From 2f1f616c65cd9819039452f9543727885d479f1f Mon Sep 17 00:00:00 2001 From: Wilmer Paulino Date: Fri, 9 Apr 2021 15:47:04 -0700 Subject: [PATCH] lntest: use validatechannels config option for itests --- lntest/neutrino.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lntest/neutrino.go b/lntest/neutrino.go index d8e4596c..a41b46b2 100644 --- a/lntest/neutrino.go +++ b/lntest/neutrino.go @@ -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 }