mirror of
https://github.com/mynodebtc/mynode.git
synced 2024-11-15 18:02:49 +00:00
13 lines
338 B
Bash
Executable File
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 |