Skip to content

Commit

Permalink
Merge pull request #3448 from ipfs/feat/wlist-resend-delay
Browse files Browse the repository at this point in the history
bitswap: increase wantlist resend delay to one minute
  • Loading branch information
whyrusleeping committed Nov 30, 2016
2 parents e855047 + 5e251e9 commit 5e4ca03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exchange/bitswap/bitswap.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 5e4ca03

Please sign in to comment.