From b56e95587f40c1888c671c146f7bf04f41f20e95 Mon Sep 17 00:00:00 2001 From: Olaoluwa Osuntokun Date: Fri, 25 Jan 2019 14:40:28 -0800 Subject: [PATCH] config: increase default trickle delay from 30s to 1m30s In this commit, we increase the default trickle delay from 30s to 1m30s. We do this as before we implement the new INV gossip mechanism, we want to de-emphasise the quick propagation of updates through the network which eats up bandwidth. --- config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.go b/config.go index e03a033b..b3957299 100644 --- a/config.go +++ b/config.go @@ -49,7 +49,7 @@ const ( defaultRPCHost = "localhost" defaultMaxPendingChannels = 1 defaultNoSeedBackup = false - defaultTrickleDelay = 30 * 1000 + defaultTrickleDelay = 90 * 1000 defaultInactiveChanTimeout = 20 * time.Minute defaultMaxLogFiles = 3 defaultMaxLogFileSize = 10