From 4c0b0dcd848165435625fd79d8b2ed96efec5697 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A9ter=20Garamv=C3=B6lgyi?= Date: Mon, 9 Mar 2026 13:15:55 +0100 Subject: [PATCH] ignore access list error --- rollup/internal/controller/sender/estimategas.go | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/rollup/internal/controller/sender/estimategas.go b/rollup/internal/controller/sender/estimategas.go index fce9866b0..b15ba762a 100644 --- a/rollup/internal/controller/sender/estimategas.go +++ b/rollup/internal/controller/sender/estimategas.go @@ -1,7 +1,6 @@ package sender import ( - "errors" "fmt" "math/big" @@ -134,11 +133,11 @@ func (s *Sender) estimateGasLimit(to *common.Address, data []byte, sidecar *type accessList, gasLimitWithAccessList, errStr, rpcErr := s.gethClient.CreateAccessList(s.ctx, msg) if rpcErr != nil { log.Error("CreateAccessList RPC error", "error", rpcErr) - return gasLimitWithoutAccessList, nil, rpcErr + return gasLimitWithoutAccessList, nil, nil } if errStr != "" { log.Error("CreateAccessList reported error", "error", errStr) - return gasLimitWithoutAccessList, nil, errors.New(errStr) + return gasLimitWithoutAccessList, nil, nil } // Fine-tune accessList because 'to' address is automatically included in the access list by the Ethereum protocol: https://github.com/ethereum/go-ethereum/blob/v1.13.10/core/state/statedb.go#L1322