mynode/rootfs/standard/usr/bin/wait_on_bitcoin.sh
2019-06-15 18:02:44 -05:00

13 lines
338 B
Bash
Executable File

#!/bin/bash
# Wait to see if bitcoind is synced
echo "Checking if Bitcoin is synced..."
while [ ! -f "/mnt/hdd/mynode/.mynode_bitcoind_synced" ]; do
echo "Bitcoin not synced, sleeping for 60 seconds..."
/bin/sleep 60s
done
# And finally, make sure bitcoind responds to API requests
bitcoin-cli -rpcwait getblockchaininfo
exit 0