lnd: activate SIGNET

This commit is contained in:
openoms 2021-09-13 10:36:45 +01:00
parent 78989baeab
commit d671aae4be
No known key found for this signature in database
GPG key ID: 5BFB77609B081B65
2 changed files with 1 additions and 7 deletions

View file

@ -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)

View file

@ -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