Browse Source

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.
master
Wilmer Paulino 3 years ago
parent
commit
b213402722
No known key found for this signature in database
GPG Key ID: 6DF57B9F9514972F
  1. 2
      config.go

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

Loading…
Cancel
Save