mirror of
https://github.com/rootzoll/raspiblitz.git
synced 2025-02-28 16:58:03 +01:00
Update lnd 0.17.5 & recommended bitcoin update 27.0 (#4601)
* update lnd 0.17.5 & recommended bitcoin update 27.0 * fix sync screen
This commit is contained in:
parent
0516aa5971
commit
e74b129f22
3 changed files with 9 additions and 3 deletions
|
@ -177,11 +177,17 @@ do
|
||||||
sleep 3
|
sleep 3
|
||||||
continue
|
continue
|
||||||
fi
|
fi
|
||||||
else
|
elif [ "${lightning}" = "lnd" ]; then
|
||||||
if [ "${btc_default_synced}" != "1" ] || [ "${ln_default_ready}" == "0" ] || [ "${ln_default_sync_chain}" == "0" ] || [ "${ln_default_sync_initial_done}" == "0" ]; then
|
if [ "${btc_default_synced}" != "1" ] || [ "${ln_default_ready}" == "0" ] || [ "${ln_default_sync_chain}" == "0" ] || [ "${ln_default_sync_initial_done}" == "0" ]; then
|
||||||
/home/admin/setup.scripts/eventBlockchainSync.sh ssh
|
/home/admin/setup.scripts/eventBlockchainSync.sh ssh
|
||||||
sleep 3
|
sleep 3
|
||||||
continue
|
continue
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
if [ "${btc_default_synced}" != "1" ]; then
|
||||||
|
/home/admin/setup.scripts/eventBlockchainSync.sh ssh
|
||||||
|
sleep 3
|
||||||
|
continue
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
|
@ -21,7 +21,7 @@ mode="$1"
|
||||||
|
|
||||||
# RECOMMENDED UPDATE BY RASPIBLITZ TEAM (just possible once per sd card update)
|
# RECOMMENDED UPDATE BY RASPIBLITZ TEAM (just possible once per sd card update)
|
||||||
# comment will be shown as "BEWARE Info" when option is chosen (can be multiple lines)
|
# comment will be shown as "BEWARE Info" when option is chosen (can be multiple lines)
|
||||||
bitcoinVersion="" # example: 22.0 .. keep empty if no newer version as sd card build is available
|
bitcoinVersion="27.0" # example: 22.0 .. keep empty if no newer version as sd card build is available
|
||||||
|
|
||||||
# GATHER DATA
|
# GATHER DATA
|
||||||
# setting download directory to the current user
|
# setting download directory to the current user
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
## based on https://raspibolt.github.io/raspibolt/raspibolt_40_lnd.html#lightning-lnd
|
## based on https://raspibolt.github.io/raspibolt/raspibolt_40_lnd.html#lightning-lnd
|
||||||
## see LND releases: https://github.com/lightningnetwork/lnd/releases
|
## see LND releases: https://github.com/lightningnetwork/lnd/releases
|
||||||
### If you change here - make sure to also change interims version in lnd.update.sh #!
|
### If you change here - make sure to also change interims version in lnd.update.sh #!
|
||||||
lndVersion="0.17.3-beta"
|
lndVersion="0.17.5-beta"
|
||||||
|
|
||||||
# olaoluwa
|
# olaoluwa
|
||||||
PGPauthor="roasbeef"
|
PGPauthor="roasbeef"
|
||||||
|
|
Loading…
Add table
Reference in a new issue