From 5e251e9d43b6dc7b8a0aeace299119560e29829e Mon Sep 17 00:00:00 2001 From: Jeromy Date: Tue, 29 Nov 2016 19:28:33 -0800 Subject: [PATCH] bitswap: increase wantlist resend delay to one minute License: MIT Signed-off-by: Jeromy --- exchange/bitswap/bitswap.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exchange/bitswap/bitswap.go b/exchange/bitswap/bitswap.go index 7910b24c90f..e1fb20de4fd 100644 --- a/exchange/bitswap/bitswap.go +++ b/exchange/bitswap/bitswap.go @@ -57,7 +57,7 @@ func init() { } } -var rebroadcastDelay = delay.Fixed(time.Second * 10) +var rebroadcastDelay = delay.Fixed(time.Minute) // New initializes a BitSwap instance that communicates over the provided // BitSwapNetwork. This function registers the returned instance as the network