mirror of
https://github.com/rootzoll/raspiblitz.git
synced 2025-02-24 14:51:03 +01:00
prevent lnd wallet unlock if setup id not done
This commit is contained in:
parent
c55c69dcbe
commit
bf9625188e
1 changed files with 1 additions and 1 deletions
|
@ -130,7 +130,7 @@ do
|
|||
############################
|
||||
# LND Wallet Unlock
|
||||
|
||||
if [ "${lndActive}" == "1" ] && [ "${walletLocked}" == "1" ] && [ "${state}" == "ready" ]; then
|
||||
if [ "${lndActive}" == "1" ] && [ "${walletLocked}" == "1" ] && [ "${state}" == "ready" ] && [ "${setupPhase}" == "done" ]; then
|
||||
#echo "# lnd.unlock.sh"
|
||||
/home/admin/config.scripts/lnd.unlock.sh
|
||||
fi
|
||||
|
|
Loading…
Add table
Reference in a new issue