diff --git a/home.admin/00infoLCD.sh b/home.admin/00infoLCD.sh index 9b3571d..c7cff7e 100755 --- a/home.admin/00infoLCD.sh +++ b/home.admin/00infoLCD.sh @@ -80,12 +80,11 @@ while : # when in presync - get more info on progress elif [ "${state}" = "presync" ]; then # get blockchain sync progress - blockchaininfo="$(sudo -u root bitcoin-cli -conf=/home/admin/assets/bitcoin.conf getblockchaininfo 2>/dev/null)" + blockchaininfo="$(sudo -u root ${network}-cli -datadir=/home/bitcoin/.${network} getblockchaininfo 2>/dev/null)" message="starting" if [ ${#blockchaininfo} -gt 0 ]; then message="$(echo "${blockchaininfo}" | jq -r '.verificationprogress')" - message=$(echo "${message}*100" | bc) - message="${message}%" + message=$(echo $message | awk '{printf( "%.2f%%", 100 * $1)}') fi # when old data - improve message