From 2c2d18ee107102333d6971c66960aca292534b38 Mon Sep 17 00:00:00 2001 From: "Johan T. Halseth" Date: Thu, 12 Oct 2017 11:40:20 +0200 Subject: [PATCH] networktest: --noencryptwallet for test nodes This commit adds the --noencryptwallet flag to integration test nodes, causing them to be operational during the tests without having to provide a password over rpc. --- networktest.go | 1 + 1 file changed, 1 insertion(+) diff --git a/networktest.go b/networktest.go index 39badd38e..03b51b763 100644 --- a/networktest.go +++ b/networktest.go @@ -149,6 +149,7 @@ func newLightningNode(btcrpcConfig *rpcclient.ConnConfig, lndArgs []string) (*li lndArgs = append(lndArgs, "--externalip=127.0.0.1:"+ strconv.Itoa(cfg.PeerPort)) + lndArgs = append(lndArgs, "--noencryptwallet") return &lightningNode{ cfg: cfg,