Skip to content

Commit

Permalink
Reset backoff to 10s (ethereum#6)
Browse files Browse the repository at this point in the history
For whatever reasons the miners would appear to deadlock when this backoff time was 7s, 10s has been working reliably for a couple weeks.
  • Loading branch information
asaj authored Jul 27, 2018
1 parent 2555317 commit 89abf1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion p2p/dial.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ import (
const (
// This is the amount of time spent waiting in between
// redialing a certain node.
dialHistoryExpiration = 7 * time.Second
dialHistoryExpiration = 10 * time.Second

// Discovery lookups are throttled and can only run
// once every few seconds.
Expand Down

0 comments on commit 89abf1a

Please sign in to comment.