From da15b558b2582b44f7e74d9a8cafef93aead10e8 Mon Sep 17 00:00:00 2001 From: Tom Kirkpatrick Date: Thu, 15 Aug 2024 16:46:25 +0200 Subject: [PATCH] config: add support for signet --- config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.go b/config.go index dcde522..ce749b1 100644 --- a/config.go +++ b/config.go @@ -127,7 +127,7 @@ type Config struct { //nolint:maligned MinimumMonitored time.Duration `long:"min_monitored" description:"The minimum amount of time that a channel must be monitored for before recommending termination. Valid time units are {s, m, h}."` // Network is a string containing the network we're running on. - Network string `long:"network" description:"The network to run on." choice:"regtest" choice:"testnet" choice:"mainnet" choice:"simnet"` + Network string `long:"network" description:"The network to run on." choice:"regtest" choice:"testnet" choice:"mainnet" choice:"simnet" choice:"signet" ` // DebugLevel is a string defining the log level for the service either // for all subsystems the same or individual level by subsystem.