From 4a2ce4c857d53890dfdfb0b44b2f2b2115d582b9 Mon Sep 17 00:00:00 2001 From: Lee Bousfield Date: Mon, 15 Jan 2024 22:34:50 -0700 Subject: [PATCH] Increase classic L1 block search limit --- internal/ethapi/api.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/ethapi/api.go b/internal/ethapi/api.go index 1fd916d903..31e42e0d74 100644 --- a/internal/ethapi/api.go +++ b/internal/ethapi/api.go @@ -1466,7 +1466,7 @@ func (s *BlockChainAPI) arbClassicL1BlockNumber(ctx context.Context, block *type } i++ blockNum = startBlockNum - i - if i > 5 { + if i > 50 { return 0, fmt.Errorf("couldn't find block with transactions. Reached %d", blockNum) } var err error