mirror of
https://github.com/rootzoll/raspiblitz.git
synced 2025-02-24 14:51:03 +01:00
lnd: activate SIGNET
This commit is contained in:
parent
78989baeab
commit
d671aae4be
2 changed files with 1 additions and 7 deletions
|
@ -269,8 +269,6 @@ def main():
|
|||
grpcEndpoint="localhost:11009"
|
||||
elif network == "signet":
|
||||
grpcEndpoint="localhost:13009"
|
||||
print("err='lnd does not support signet yet'")
|
||||
sys.exit(1)
|
||||
else:
|
||||
print("err='chain not supported'")
|
||||
sys.exit(1)
|
||||
|
|
|
@ -13,12 +13,8 @@ fi
|
|||
|
||||
# CHAIN is signet | testnet | mainnet
|
||||
CHAIN=$2
|
||||
if [ ${CHAIN} = testnet ]||[ ${CHAIN} = mainnet ];then
|
||||
if [ ${CHAIN} = testnet ]||[ ${CHAIN} = mainnet ]||[ ${CHAIN} = signet ];then
|
||||
echo "# Configuring the LND instance on ${CHAIN}"
|
||||
elif [ ${CHAIN} = signet ]; then
|
||||
echo "# Signet is not yet supported in LND"
|
||||
echo "# see https://github.com/lightningnetwork/lnd/issues/5018"
|
||||
exit 1
|
||||
else
|
||||
echo "# ${CHAIN} is not supported"
|
||||
exit 1
|
||||
|
|
Loading…
Add table
Reference in a new issue