mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-03-04 09:48:19 +01:00
lntest/node: use --bitcoin.defaultchanconfs=1 and --bitcoin.defaultremotedelay=4
This commit is contained in:
parent
4ee3bff771
commit
53b0ee3765
1 changed files with 2 additions and 1 deletions
|
@ -122,7 +122,8 @@ func (cfg nodeConfig) genArgs() []string {
|
||||||
args = append(args, "--nobootstrap")
|
args = append(args, "--nobootstrap")
|
||||||
args = append(args, "--noencryptwallet")
|
args = append(args, "--noencryptwallet")
|
||||||
args = append(args, "--debuglevel=debug")
|
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.rpchost=%v", cfg.RPCConfig.Host))
|
||||||
args = append(args, fmt.Sprintf("--bitcoin.rpcuser=%v", cfg.RPCConfig.User))
|
args = append(args, fmt.Sprintf("--bitcoin.rpcuser=%v", cfg.RPCConfig.User))
|
||||||
args = append(args, fmt.Sprintf("--bitcoin.rpcpass=%v", cfg.RPCConfig.Pass))
|
args = append(args, fmt.Sprintf("--bitcoin.rpcpass=%v", cfg.RPCConfig.Pass))
|
||||||
|
|
Loading…
Add table
Reference in a new issue