From 53b0ee3765d036642027732d1fc3c10da4225295 Mon Sep 17 00:00:00 2001 From: "Johan T. Halseth" Date: Tue, 19 Dec 2017 17:07:35 +0100 Subject: [PATCH] lntest/node: use --bitcoin.defaultchanconfs=1 and --bitcoin.defaultremotedelay=4 --- lntest/node.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lntest/node.go b/lntest/node.go index 1e2fd7b7..43f93292 100644 --- a/lntest/node.go +++ b/lntest/node.go @@ -122,7 +122,8 @@ func (cfg nodeConfig) genArgs() []string { args = append(args, "--nobootstrap") args = append(args, "--noencryptwallet") args = append(args, "--debuglevel=debug") - args = append(args, "--defaultchanconfs=1") + args = append(args, "--bitcoin.defaultchanconfs=1") + args = append(args, "--bitcoin.defaultremotedelay=4") args = append(args, fmt.Sprintf("--bitcoin.rpchost=%v", cfg.RPCConfig.Host)) args = append(args, fmt.Sprintf("--bitcoin.rpcuser=%v", cfg.RPCConfig.User)) args = append(args, fmt.Sprintf("--bitcoin.rpcpass=%v", cfg.RPCConfig.Pass))