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.
This commit is contained in:
Johan T. Halseth 2017-10-12 11:40:20 +02:00 committed by Olaoluwa Osuntokun
parent 824e0c2982
commit 2c2d18ee10
1 changed files with 1 additions and 0 deletions

View File

@ -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,