mirror of
https://github.com/rootzoll/raspiblitz.git
synced 2025-02-25 07:07:46 +01:00
remove debug lines
This commit is contained in:
parent
24f15aa895
commit
52d97c8e8e
1 changed files with 2 additions and 3 deletions
|
@ -141,16 +141,15 @@ waitUntilChainNetworkIsReady()
|
||||||
rm error.tmp
|
rm error.tmp
|
||||||
|
|
||||||
# check for missing blockchain data
|
# check for missing blockchain data
|
||||||
blockchainsize=$(du /mnt/hdd/bitcoin | head -n1 | awk '{print $1;}')
|
blockchainsize=$(sudo du /mnt/hdd/bitcoin | head -n1 | awk '{print $1;}')
|
||||||
echo "blockchainsize(${blockchainsize})"
|
echo "blockchainsize(${blockchainsize})"
|
||||||
if [ ${#blockchainsize} -gt 0 ]; then
|
if [ ${#blockchainsize} -gt 0 ]; then
|
||||||
if [ ${blockchainsize} -lt 1000000 ]; then
|
if [ ${blockchainsize} -lt 1000000 ]; then
|
||||||
echo "Mission Bloclchain Data ..."
|
echo "Mission Blockchain Data ..."
|
||||||
clienterror="missing blockchain"
|
clienterror="missing blockchain"
|
||||||
sleep 3
|
sleep 3
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
sleep 5
|
|
||||||
|
|
||||||
if [ ${#clienterror} -gt 0 ]; then
|
if [ ${#clienterror} -gt 0 ]; then
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue