diff --git a/config.go b/config.go index 88e45e502c..24ea351936 100644 --- a/config.go +++ b/config.go @@ -1201,9 +1201,9 @@ func ValidateConfig(cfg Config, interceptor signal.Interceptor, fileParser, cfg.ActiveNetParams.Params = &chainParams } if numNets > 1 { - str := "The mainnet, testnet, regtest, and simnet " + + str := "The mainnet, testnet, regtest, simnet and signet " + "params can't be used together -- choose one " + - "of the four" + "of the five" return nil, mkErr(str) } @@ -1212,7 +1212,7 @@ func ValidateConfig(cfg Config, interceptor signal.Interceptor, fileParser, // know how to initialize the daemon. if numNets == 0 { str := "either --bitcoin.mainnet, or bitcoin.testnet," + - "bitcoin.simnet, or bitcoin.regtest " + + "bitcoin.simnet, bitcoin.regtest or bitcoin.signet " + "must be specified" return nil, mkErr(str)