From f8c6fbd7f422d5eea00a8a817bbbdee0e01eaeaf Mon Sep 17 00:00:00 2001 From: Daniel Date: Thu, 13 Apr 2023 16:29:40 +0200 Subject: [PATCH] Increase max state table lookup time window --- network/state/lookup.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/network/state/lookup.go b/network/state/lookup.go index 479bcf94..c8235717 100644 --- a/network/state/lookup.go +++ b/network/state/lookup.go @@ -29,7 +29,7 @@ var ( ) var ( - lookupTries = 15 // With a max wait of 5ms, this amounts to up to 75ms. + lookupTries = 20 // With a max wait of 5ms, this amounts to up to 100ms. fastLookupTries = 2 )