mirror of
https://github.com/mynodebtc/mynode.git
synced 2024-12-26 06:28:07 +00:00
Tweak lnd login timing
This commit is contained in:
parent
53765357ff
commit
a82b3659de
|
@ -5,6 +5,8 @@ source /usr/share/mynode/mynode_config.sh
|
|||
# Wait for LND + BTC to start
|
||||
sleep 1m
|
||||
|
||||
CHECK_RATE="10s"
|
||||
|
||||
while true; do
|
||||
|
||||
while [ ! -f "$LND_WALLET_FILE" ]; do
|
||||
|
@ -17,22 +19,21 @@ while true; do
|
|||
sleep 30s
|
||||
done
|
||||
|
||||
# Sleep 15 seconds to let LND startup and avoid LN race condition
|
||||
# See https://github.com/lightningnetwork/lnd/issues/3631
|
||||
#/bin/sleep 60s
|
||||
|
||||
# Wait for lnd to accept logins
|
||||
until journalctl -r -u lnd --no-pager | head -n 20 | grep "Waiting for wallet encryption password"
|
||||
do
|
||||
sleep 15s
|
||||
sleep $CHECK_RATE
|
||||
done
|
||||
sleep 15s
|
||||
sleep 5s
|
||||
|
||||
echo "Unlocking wallet..."
|
||||
/usr/bin/expect /usr/bin/unlock_lnd.tcl
|
||||
if [ $? -eq 0 ]; then
|
||||
# Unlocked! Verify unlocked every time LND files change
|
||||
inotifywait -t 600 -r -e modify -e create -e delete /mnt/hdd/mynode/lnd/data/chain/bitcoin/mainnet/ /mnt/hdd/mynode/lnd/tls.cert
|
||||
|
||||
# Slow down check rate for next time around
|
||||
CHECK_RATE="60s"
|
||||
else
|
||||
# Failed, try again in 15 seconds
|
||||
/bin/sleep 15s
|
||||
|
|
Loading…
Reference in New Issue
Block a user