lnd: activate SIGNET

This commit is contained in:
openoms
2021-09-13 10:36:45 +01:00
parent 78989baeab
commit d671aae4be
2 changed files with 1 additions and 7 deletions

View File

@@ -269,8 +269,6 @@ def main():
grpcEndpoint="localhost:11009" grpcEndpoint="localhost:11009"
elif network == "signet": elif network == "signet":
grpcEndpoint="localhost:13009" grpcEndpoint="localhost:13009"
print("err='lnd does not support signet yet'")
sys.exit(1)
else: else:
print("err='chain not supported'") print("err='chain not supported'")
sys.exit(1) sys.exit(1)

View File

@@ -13,12 +13,8 @@ fi
# CHAIN is signet | testnet | mainnet # CHAIN is signet | testnet | mainnet
CHAIN=$2 CHAIN=$2
if [ ${CHAIN} = testnet ]||[ ${CHAIN} = mainnet ];then if [ ${CHAIN} = testnet ]||[ ${CHAIN} = mainnet ]||[ ${CHAIN} = signet ];then
echo "# Configuring the LND instance on ${CHAIN}" 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 else
echo "# ${CHAIN} is not supported" echo "# ${CHAIN} is not supported"
exit 1 exit 1