mirror of
https://github.com/raspiblitz/raspiblitz.git
synced 2025-09-27 20:16:22 +02:00
lnd: activate SIGNET
This commit is contained in:
@@ -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
|
||||
|
Reference in New Issue
Block a user