mirror of
https://github.com/mynodebtc/mynode.git
synced 2024-11-15 18:02:49 +00:00
12 lines
398 B
Plaintext
12 lines
398 B
Plaintext
|
#!/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
|
||
|
|
||
|
LND_PASS=$(cat /mnt/hdd/mynode/settings/.lndpw)
|
||
|
LND_TLS_CERT="/home/bitcoin/.lnd/tls.cert"
|
||
|
LND_MACAROON="/home/bitcoin/.lnd/data/chain/mainnet/admin.macaroon"
|
||
|
echo $LND_PASS | lncli --tlscertpath $LND_TLS_CERT --macaroonpath $LND_MACAROON unlock --stdin
|