From 447c9f2c0be2512b4af0ce1ce5314f661da6952f Mon Sep 17 00:00:00 2001 From: Olaoluwa Osuntokun Date: Sun, 29 Nov 2020 16:14:00 -0800 Subject: [PATCH] lntest: always turn off gossip throttling for nodes created in itests --- lntest/node.go | 1 + 1 file changed, 1 insertion(+) diff --git a/lntest/node.go b/lntest/node.go index d96fe995e..2ea8e13ad 100644 --- a/lntest/node.go +++ b/lntest/node.go @@ -255,6 +255,7 @@ func (cfg NodeConfig) genArgs() []string { args = append(args, fmt.Sprintf("--invoicemacaroonpath=%v", cfg.InvoiceMacPath)) args = append(args, fmt.Sprintf("--trickledelay=%v", trickleDelay)) args = append(args, fmt.Sprintf("--profile=%d", cfg.ProfilePort)) + args = append(args, fmt.Sprintf("--protocol.legacy.no-gossip-throttle")) if !cfg.HasSeed { args = append(args, "--noseedbackup")