fix presync progress

This commit is contained in:
Christian Rotzoll
2019-05-28 00:49:39 +02:00
parent 4156f6d277
commit d4d633552f

View File

@@ -83,8 +83,8 @@ while :
# when in presync - get more info on progress
elif [ "${state}" = "presync" ]; then
# get blockchain sync progress
blockchaininfo="$(sudo -u root ${network}-cli -datadir=/home/bitcoin/.${network} getblockchaininfo 2>/dev/null)"
# sudo -u root bitcoin-cli --conf=/home/admin/assets/bitcoin.conf getblockchaininfo
blockchaininfo="$(sudo -u root ${network}-cli --conf=/home/admin/assets/${network}.conf getblockchaininfo 2>/dev/null)"
message="starting"
if [ ${#blockchaininfo} -gt 0 ]; then
message="$(echo "${blockchaininfo}" | jq -r '.verificationprogress')"