Skip to content

Instantly share code, notes, and snippets.

View doma2k's full-sized avatar
🏠
Planet Earth is my Home!

doma2k

🏠
Planet Earth is my Home!
View GitHub Profile
@atsiarenia
atsiarenia / try_to_catch_up_with_the_blocks.sh
Created July 29, 2021 15:10
[OMNIFLIX] try to catch up with the blocks
#!/bin/bash
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"
echo -e "YOUR BLOCK HEIGHT: ${YOUR_BLOCK_HEIGHT} \n"
echo -e "Diff are ${DIFF_BLOCK_HEIGHT}"
if [ $DIFF_BLOCK_HEIGHT -gt $DIFF_BLOCK_LIMIT ]; then