lntest/node: use --bitcoin.defaultchanconfs=1 and --bitcoin.defaultremotedelay=4

This commit is contained in:
Johan T. Halseth 2017-12-19 17:07:35 +01:00
parent 4ee3bff771
commit 53b0ee3765
No known key found for this signature in database
GPG Key ID: 15BAADA29DA20D26

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