mirror of
https://github.com/rootzoll/raspiblitz.git
synced 2025-02-24 22:58:43 +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
|
||||
|
||||
# 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})"
|
||||
if [ ${#blockchainsize} -gt 0 ]; then
|
||||
if [ ${blockchainsize} -lt 1000000 ]; then
|
||||
echo "Mission Bloclchain Data ..."
|
||||
echo "Mission Blockchain Data ..."
|
||||
clienterror="missing blockchain"
|
||||
sleep 3
|
||||
fi
|
||||
fi
|
||||
sleep 5
|
||||
|
||||
if [ ${#clienterror} -gt 0 ]; then
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue