|
|
|
@ -44,8 +44,8 @@ get_status() {
|
|
|
|
|
if [ "$sync_status" = "synced" ]; then |
|
|
|
|
install_status="installed, $running_status, synced" |
|
|
|
|
elif [ "$sync_status" = "syncing" ]; then |
|
|
|
|
progress=$(bitcoin-cli getblockchaininfo | grep 'progress' | awk -F":" '{gsub(/,/, "", $2); printf "%.1f%%", $2*100}') |
|
|
|
|
install_status="installed, $running_status, syncing $progress" |
|
|
|
|
progress=$(bitcoin-cli getblockchaininfo | grep 'progress' | awk -F":" '{gsub(/,/, "", $2); printf "%.2f", $2*100}') |
|
|
|
|
install_status="installed, $running_status, syncing $progress%%" |
|
|
|
|
elif [ "$sync_status" = "unknown" ]; then |
|
|
|
|
install_status="installed, $running_status, not synced" |
|
|
|
|
elif [ "$sync_status" = "error" ]; then |
|
|
|
|