From edec79448aa1d62b84683b1b22e12e145dbdda7c Mon Sep 17 00:00:00 2001 From: William Banfield Date: Wed, 22 Jun 2022 19:49:38 -0400 Subject: [PATCH] p2p: set empty timeouts --- node/node.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/node/node.go b/node/node.go index 77773044b..c6a0f188d 100644 --- a/node/node.go +++ b/node/node.go @@ -748,6 +748,8 @@ func getRouterConfig(conf *config.Config, appClient abciclient.Client) p2p.Route } } + opts.HandshakeTimeout = 15 * time.Second + opts.DialTimeout = 5 * time.Second return opts }