mirror of
https://github.com/raspiblitz/raspiblitz.git
synced 2025-04-21 14:04:15 +02:00
detailed info after 120 secs
This commit is contained in:
parent
ccecf6aef9
commit
00b7607f42
@ -157,14 +157,17 @@ while :
|
||||
l2="---> Starting Up\n"
|
||||
l3="Can take longer if device was off."
|
||||
isVerifying=$(echo "${clienterror}" | grep -c 'Verifying blocks')
|
||||
isLoadingBlockIndex=$(echo "${clienterror}" | grep -c 'Loading block index')
|
||||
if [ ${isVerifying} -gt 0 ]; then
|
||||
l2="---> Verifying Blocks\n"
|
||||
elif [ ${isLoadingBlockIndex} -gt 0 ]; then
|
||||
l2="---> Loading Block Index\n"
|
||||
else
|
||||
# when takes longer display error
|
||||
uptimeSeconds="$(cat /proc/uptime | grep -o '^[0-9]\+')"
|
||||
if [ ${uptimeSeconds} -gt 10 ]; then
|
||||
if [ ${uptimeSeconds} -gt 120 ]; then
|
||||
l2="---> Error: ${clienterror}\n"
|
||||
boxwidth=70
|
||||
boxwidth=70
|
||||
fi
|
||||
fi
|
||||
dialog --backtitle "RaspiBlitz ${codeVersion} (${localip}) - Welcome Back" --infobox "$l1$l2$l3" 5 ${boxwidth}
|
||||
|
@ -103,14 +103,17 @@ waitUntilChainNetworkIsReady()
|
||||
clienterror=`cat error.tmp`
|
||||
rm error.tmp
|
||||
if [ ${#clienterror} -gt 0 ]; then
|
||||
boxwidth=40
|
||||
l1="Waiting for ${network}d to get ready.\n"
|
||||
l2="---> Starting Up\n"
|
||||
l3="Can take longer if device was off."
|
||||
isVerifying=$(echo "${clienterror}" | grep -c 'Verifying blocks')
|
||||
if [ ${isVerifying} -gt 0 ]; then
|
||||
l2="---> Verifying Blocks\n"
|
||||
else
|
||||
l2="---> ${clienterror}\n"
|
||||
boxwidth=70
|
||||
fi
|
||||
boxwidth=40
|
||||
dialog --backtitle "RaspiBlitz ${localip} - Welcome" --infobox "$l1$l2$l3" 5 ${boxwidth}
|
||||
else
|
||||
locked=$(sudo -u bitcoin /usr/local/bin/lncli --chain=${network} --network=${chain}net getinfo 2>&1 | grep -c unlock)
|
||||
|
Loading…
x
Reference in New Issue
Block a user