lntest: use validatechannels config option for itests

This commit is contained in:
Wilmer Paulino 2021-04-09 15:47:04 -07:00
parent 6fe4114e96
commit 2f1f616c65
No known key found for this signature in database
GPG Key ID: 6DF57B9F9514972F

@ -24,6 +24,9 @@ func (b NeutrinoBackendConfig) GenArgs() []string {
var args []string
args = append(args, "--bitcoin.node=neutrino")
args = append(args, "--neutrino.connect="+b.minerAddr)
// We enable validating channels so that we can obtain the outpoint for
// channels within the graph and make certain assertions based on them.
args = append(args, "--neutrino.validatechannels")
return args
}