Skip to content

Instantly share code, notes, and snippets.

View rost1989's full-sized avatar

Polar Bear rost1989

View GitHub Profile
@atsiarenia
atsiarenia / try_to_catch_up_with_the_blocks.sh
Created July 29, 2021 18:03
[OMNIFLIX] try to catch up with the blocks WITH delay
#!/bin/bash
DELAY=3600 #in secs - how often restart the script
RED_COLOR='\033[0;31m'
WITHOU_COLOR='\033[0m'
LATEST_BLOCK_HEIGHT=$(omniflixhubd query tendermint-validator-set | jq . | grep block_height | grep -o -E '[0-9]+')
YOUR_BLOCK_HEIGHT=$(omniflixhubd status 2>&1 | jq ."SyncInfo"."latest_block_height"| grep -o -E '[0-9]+')
DIFF_BLOCK_HEIGHT=$(expr $LATEST_BLOCK_HEIGHT - $YOUR_BLOCK_HEIGHT)
DIFF_BLOCK_LIMIT=0
for (( ;; )); do
echo -e "LATEST BLOCK HEIGHT: ${LATEST_BLOCK_HEIGHT} \n"