From b213402722bd0eaa380cc43d4b1d5f7104efeaac Mon Sep 17 00:00:00 2001 From: Wilmer Paulino Date: Tue, 1 Jun 2021 16:20:58 -0700 Subject: [PATCH] config: support auto rpc config with bitcoind signet This allows lnd to automatically retrieve the RPC credentials when attempting to connect to a signet bitcoind node. --- config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.go b/config.go index 5c8467e2..26b109b4 100644 --- a/config.go +++ b/config.go @@ -1756,7 +1756,7 @@ func extractBitcoindRPCParams(networkName string, switch networkName { case "mainnet": chainDir = "" - case "regtest", "testnet3": + case "regtest", "testnet3", "signet": chainDir = networkName default: return "", "", "", "", fmt.Errorf("unexpected networkname %v", networkName)