2020-05-13 02:35:54 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# mynode-lnd-unlock
|
|
|
|
# This script needs to be run with sudo
|
|
|
|
# It is intended to attempt a manual unlock of the lnd wallet
|
|
|
|
set -e
|
|
|
|
|
2021-03-09 03:55:39 +00:00
|
|
|
source /usr/share/mynode/mynode_config.sh
|
|
|
|
|
|
|
|
NETWORK=mainnet
|
|
|
|
if [ -f $IS_TESTNET_ENABLED_FILE ]; then
|
|
|
|
NETWORK=testnet
|
|
|
|
fi
|
|
|
|
|
2020-05-13 02:35:54 +00:00
|
|
|
LND_PASS=$(cat /mnt/hdd/mynode/settings/.lndpw)
|
|
|
|
LND_TLS_CERT="/home/bitcoin/.lnd/tls.cert"
|
2021-03-09 03:55:39 +00:00
|
|
|
LND_MACAROON="/home/bitcoin/.lnd/data/chain/$NETWORK/admin.macaroon"
|
|
|
|
echo $LND_PASS | lncli --network=$NETWORK --tlscertpath $LND_TLS_CERT --macaroonpath $LND_MACAROON unlock --stdin
|