From 46b300c6ca710e89a07380b51a51d9dc87b35ab8 Mon Sep 17 00:00:00 2001 From: aarshkshah1992 Date: Wed, 7 Jan 2026 19:11:45 +0530 Subject: [PATCH] increase crawl timeout --- beacon-chain/p2p/service.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beacon-chain/p2p/service.go b/beacon-chain/p2p/service.go index 99c3f79cd7..62440997e7 100644 --- a/beacon-chain/p2p/service.go +++ b/beacon-chain/p2p/service.go @@ -64,7 +64,7 @@ var ( // defined below. pollingPeriod = 6 * time.Second - crawlTimeout = 5 * time.Second + crawlTimeout = 12 * time.Second crawlInterval = 1 * time.Second maxConcurrentDials = int64(256) )