Browse Source

updated sync info

dev
rootzoll 6 years ago
parent
commit
5b97661563
  1. 17
      home.admin/00mainMenu.sh

17
home.admin/00mainMenu.sh

@ -1,5 +1,5 @@
#!/bin/bash #!/bin/bash
echo "Starting the main menu - please wait ..." echo "Starting the main menu ..."
# CONFIGFILE - configuration of RaspiBlitz # CONFIGFILE - configuration of RaspiBlitz
configFile="/mnt/hdd/raspiblitz.conf" configFile="/mnt/hdd/raspiblitz.conf"
@ -95,6 +95,7 @@ localip=$(ip addr | grep 'state UP' -A2 | tail -n1 | awk '{print $2}' | cut -f1
waitUntilChainNetworkIsReady() waitUntilChainNetworkIsReady()
{ {
echo "checking ${network}d - please wait .." echo "checking ${network}d - please wait .."
echo "can take longer if device was off or first time"
while : while :
do do
sudo -u bitcoin ${network}-cli -datadir=/home/bitcoin/.${network} getblockchaininfo 1>/dev/null 2>error.tmp sudo -u bitcoin ${network}-cli -datadir=/home/bitcoin/.${network} getblockchaininfo 1>/dev/null 2>error.tmp
@ -112,7 +113,13 @@ waitUntilChainNetworkIsReady()
dialog --backtitle "RaspiBlitz ${localip} - Welcome" --infobox "$l1$l2$l3" 5 ${boxwidth} dialog --backtitle "RaspiBlitz ${localip} - Welcome" --infobox "$l1$l2$l3" 5 ${boxwidth}
sleep 5 sleep 5
else else
return lndSynced=$(sudo -u bitcoin /usr/local/bin/lncli --chain=${network} getinfo 2>/dev/null | jq -r '.synced_to_chain' | grep -c true)
if [ ${lndSynced} -eq 0 ]; then
./80scanLND.sh
else
# everything is ready - return from loop
return
fi
fi fi
done done
} }
@ -187,12 +194,6 @@ else
else else
# if LND is syncing or scanning
lndSynced=$(sudo -u bitcoin /usr/local/bin/lncli --chain=${network} getinfo 2>/dev/null | jq -r '.synced_to_chain' | grep -c true)
if [ ${lndSynced} -eq 0 ]; then
dialog --backtitle "RaspiBlitz - Setup" --title " RaspiBlitz is Syncing" --msgbox "Wait until RaspiBlitz is fully synced.\nSee progress on display ..." 3 42
fi
if [ ${runningRTL} -eq 1 ]; then if [ ${runningRTL} -eq 1 ]; then
TITLE="Webinterface: http://${localip}:3000" TITLE="Webinterface: http://${localip}:3000"
fi fi

Loading…
Cancel
Save