From ee02c55dc4e78c5d83fcefb9338a96320d17dc22 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A9ter=20Garamv=C3=B6lgyi?= Date: Thu, 20 Nov 2025 14:26:33 +0100 Subject: [PATCH 1/2] feat(witness): include access-list in witness --- eth/api.go | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/eth/api.go b/eth/api.go index b56b800c32b8..06326d65b730 100644 --- a/eth/api.go +++ b/eth/api.go @@ -367,6 +367,20 @@ func generateWitness(blockchain *core.BlockChain, block *types.Block) (*stateles // sure that this is always present in the execution witness. statedb.GetState(rcfg.L1GasPriceOracleAddress, rcfg.IsFeynmanSlot) + // Ensure that all access list entries are included in the witness, + // as these are always loaded by revm. + for _, tx := range block.Transactions() { + for _, accessTuple := range tx.AccessList() { + // Load account + statedb.GetBalance(accessTuple.Address) + + // Load storage entries + for _, key := range accessTuple.StorageKeys { + statedb.GetState(accessTuple.Address, key) + } + } + } + receipts, _, usedGas, err := blockchain.Processor().Process(block, statedb, *blockchain.GetVMConfig()) if err != nil { return nil, fmt.Errorf("failed to process block %d: %w", block.Number(), err) From d420f98fb904de953e6f1a35ee2777ab3c4d7872 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A9ter=20Garamv=C3=B6lgyi?= Date: Thu, 20 Nov 2025 14:32:08 +0100 Subject: [PATCH 2/2] bump version --- params/version.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/params/version.go b/params/version.go index dec5781425bc..2034aada3f11 100644 --- a/params/version.go +++ b/params/version.go @@ -24,7 +24,7 @@ import ( const ( VersionMajor = 5 // Major version component of the current release VersionMinor = 9 // Minor version component of the current release - VersionPatch = 14 // Patch version component of the current release + VersionPatch = 15 // Patch version component of the current release VersionMeta = "mainnet" // Version metadata to append to the version string )