From ad1e8b75e523608f117ebf7aeaa2bd22bfc1c6be Mon Sep 17 00:00:00 2001 From: StephenButtolph Date: Wed, 15 Apr 2020 17:49:08 -0400 Subject: [PATCH] Increased the reconnect timeout to ease network upgrades --- networking/handshake_handlers.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/networking/handshake_handlers.go b/networking/handshake_handlers.go index e037781..de6bb9c 100644 --- a/networking/handshake_handlers.go +++ b/networking/handshake_handlers.go @@ -79,7 +79,7 @@ const ( GetVersionTimeout = 2 * time.Second // ReconnectTimeout is the amount of time to wait to reconnect to a staker // before giving up - ReconnectTimeout = 1 * time.Minute + ReconnectTimeout = 10 * time.Minute ) // Manager is the struct that will be accessed on event calls