mirror of
https://github.com/raspiblitz/raspiblitz.git
synced 2025-04-11 21:29:29 +02:00
better switch
This commit is contained in:
parent
ec8d7e1ea3
commit
ae5fcd2879
@ -94,6 +94,11 @@ echo ""
|
||||
###### Instructions on Creating LND Wallet
|
||||
walletExists=$(sudo ls /mnt/hdd/lnd/data/chain/${network}/${chain}net/wallet.db 2>/dev/null | grep wallet.db -c)
|
||||
if [ ${walletExists} -eq 0 ]; then
|
||||
|
||||
# delete old macaroons if exist
|
||||
sudo rm /mnt/hdd/lnd/*.macaroon 2>/dev/null
|
||||
sudo rm /home/admin/.lnd/*.macaroon 2>/dev/null
|
||||
|
||||
# setup state signals, that no wallet has been created yet
|
||||
dialog --backtitle "RaspiBlitz - LND Lightning Wallet" --msgbox "
|
||||
${network} and Lighthing Services are installed.
|
||||
|
@ -63,6 +63,7 @@ fi
|
||||
|
||||
# find out what is the minimum amount
|
||||
# TODO find a better way - also consider dust and channel reserve
|
||||
# details see here: https://github.com/btcontract/lnwallet/issues/52
|
||||
minSat=20000
|
||||
_error="./.error.out"
|
||||
lncli openchannel ${CHOICE} 1 0 2>$_error
|
||||
|
Loading…
x
Reference in New Issue
Block a user