mirror of
https://github.com/rootzoll/raspiblitz.git
synced 2024-11-20 02:09:15 +01:00
54 lines
2.3 KiB
Bash
Executable File
54 lines
2.3 KiB
Bash
Executable File
# load network
|
|
network=`sudo cat /home/admin/.network`
|
|
|
|
# load name of Blitz
|
|
name=`sudo cat /home/admin/.hostname`
|
|
|
|
### USER PI AUTOSTART (LCD Display)
|
|
localip=$(ip addr | grep 'state UP' -A2 | tail -n1 | awk '{print $2}' | cut -f1 -d'/')
|
|
|
|
# parse the actual scanned height progress from LND logs
|
|
item=0
|
|
blockchaininfo=$(sudo -u bitcoin ${network}-cli -datadir=/home/bitcoin/.${network} getblockchaininfo)
|
|
chain="$(echo "${blockchaininfo}" | jq -r '.chain')"
|
|
gotData=$(sudo -u bitcoin tail -n 100 /mnt/hdd/lnd/logs/${network}/${chain}net/lnd.log | grep -c "(height")
|
|
if [ ${gotData} -gt 0 ]; then
|
|
item=$(sudo -u bitcoin tail -n 100 /mnt/hdd/lnd/logs/${network}/${chain}net/lnd.log | grep "(height" | tail -n1 | awk '{print $10} {print $11} {print $12}' | tr -dc '0-9')
|
|
fi
|
|
|
|
# get total number of blocks
|
|
|
|
total=$(echo "${blockchaininfo}" | jq -r '.blocks')
|
|
progress="$(echo "${blockchaininfo}" | jq -r '.verificationprogress')"
|
|
|
|
# calculate progress in percent
|
|
percent=$(awk "BEGIN { pc=100*${item}/${total}; i=int(pc); print (pc-i<0.5)?i:i+1 }")
|
|
if [ ${percent} -eq 100 ]; then
|
|
# normally if 100% gets calculated, item parsed the wrong height
|
|
percent=0
|
|
fi
|
|
|
|
# check if blockchain is still syncing
|
|
heigh=6
|
|
width=42
|
|
isWaitingBlockchain=$( sudo -u bitcoin tail -n 2 /mnt/hdd/lnd/logs/${network}/${chain}net/lnd.log | grep "Waiting for chain backend to finish sync" -c )
|
|
if [ ${isWaitingBlockchain} -gt 0 ]; then
|
|
heigh=7
|
|
infoStr=" Waiting for final Blockchain Sync\n Progress: ${progress}\n Please wait - this can take some time\n ssh admin@${localip}\n Password A"
|
|
if [ "$USER" = "admin" ]; then
|
|
heigh=6
|
|
width=53
|
|
infoStr=$(echo " Waiting for final Blockchain Sync\n Progress: ${progress}\n Please wait - this can take some time\n Its OK to close terminal and ssh back in later.")
|
|
fi
|
|
else
|
|
infoStr=$(echo " Lightning Rescanning Blockchain ${percent}%\n Please wait - this can take some time\n ssh admin@${localip}\n Password A")
|
|
if [ "$USER" = "admin" ]; then
|
|
heigh=5
|
|
width=53
|
|
infoStr=$(echo " Lightning Rescanning Blockchain ${percent}%\n Please wait - this can take some time\nIts OK to close terminal and ssh back in later.")
|
|
fi
|
|
fi
|
|
|
|
# display progress to user
|
|
sleep 3
|
|
dialog --title " ${network} / ${chain} " --backtitle "RaspiBlitz (${name})" --infobox "${infoStr}" ${heigh} ${width} |