mirror of
https://github.com/mynodebtc/mynode.git
synced 2024-11-14 09:29:15 +00:00
16 lines
368 B
Bash
Executable File
16 lines
368 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -x
|
|
set -e
|
|
|
|
# Wait to see if bitcoind is synced
|
|
echo "Checking if Bitcoin is synced..."
|
|
while [ ! -f "/mnt/hdd/mynode/.mynode_bitcoind_synced" ]; do
|
|
echo "BTC not synced, sleeping 30s"
|
|
/bin/sleep 30s
|
|
done
|
|
|
|
# And finally, make sure bitcoind responds to API requests
|
|
bitcoin-cli -datadir=/mnt/hdd/mynode/bitcoin -rpcwait getblockchaininfo
|
|
|
|
exit 0 |