mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-03-04 09:48:19 +01:00
config: improve error message
Previously, the error message had one missing space: "... either --bitcoin.mainnet, or bitcoin.testnet,bitcoin.simnet, ..." I added a space after "bitcoin.testnet,".
This commit is contained in:
parent
1bc25c1136
commit
3360d285fb
1 changed files with 1 additions and 1 deletions
|
@ -1261,7 +1261,7 @@ func ValidateConfig(cfg Config, interceptor signal.Interceptor, fileParser,
|
|||
// The target network must be provided, otherwise, we won't
|
||||
// know how to initialize the daemon.
|
||||
if numNets == 0 {
|
||||
str := "either --bitcoin.mainnet, or bitcoin.testnet," +
|
||||
str := "either --bitcoin.mainnet, or bitcoin.testnet, " +
|
||||
"bitcoin.simnet, bitcoin.regtest or bitcoin.signet " +
|
||||
"must be specified"
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue