From 7e90e6d58a1eb2cfb7ee8f185647ab31bad21a63 Mon Sep 17 00:00:00 2001 From: Jordan Hagan Date: Sat, 28 Jan 2023 16:32:18 +1100 Subject: [PATCH] Revert "Reduce txArriveTimeout to 100ms" This reverts commit 243d231fe45bc02f33678bb4f69e941167d7f466. --- eth/fetcher/tx_fetcher.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eth/fetcher/tx_fetcher.go b/eth/fetcher/tx_fetcher.go index 8b97746b14..b10c0db9ee 100644 --- a/eth/fetcher/tx_fetcher.go +++ b/eth/fetcher/tx_fetcher.go @@ -55,11 +55,11 @@ const ( // txArriveTimeout is the time allowance before an announced transaction is // explicitly requested. - txArriveTimeout = 100 * time.Millisecond + txArriveTimeout = 500 * time.Millisecond // txGatherSlack is the interval used to collate almost-expired announces // with network fetches. - txGatherSlack = 20 * time.Millisecond + txGatherSlack = 100 * time.Millisecond ) var (