14 lines
424 B
Bash
14 lines
424 B
Bash
|
#!/bin/bash
|
||
|
# checks if parity has a fully synced blockchain
|
||
|
|
||
|
ETH_SYNCING=$(curl -X POST --data '{"jsonrpc":"2.0","method":"eth_syncing","params":[],"id":1}' http://localhost:8545 -H 'Content-Type: application/json')
|
||
|
RESULT=$(echo "$ETH_SYNCING" | jq -r .result)
|
||
|
|
||
|
if [ "$RESULT" == "false" ]; then
|
||
|
echo "Parity is ready to start accepting traffic"
|
||
|
exit 0
|
||
|
else
|
||
|
echo "Parity is still syncing the blockchain"
|
||
|
exit 1
|
||
|
fi
|