From b55ef78c3641657bd26e65a49b18c3ff6b9e780e Mon Sep 17 00:00:00 2001 From: bhartnett Date: Mon, 20 Apr 2026 12:28:22 +0800 Subject: [PATCH] Update BlockAccessIndex to uint64. --- eth/common/block_access_lists.nim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eth/common/block_access_lists.nim b/eth/common/block_access_lists.nim index 6b0c86ca..fd273a49 100644 --- a/eth/common/block_access_lists.nim +++ b/eth/common/block_access_lists.nim @@ -1,5 +1,5 @@ # eth -# Copyright (c) 2025 Status Research & Development GmbH +# Copyright (c) 2025-2026 Status Research & Development GmbH # Licensed and distributed under either of # * MIT license (license terms in the root directory or at https://opensource.org/licenses/MIT). # * Apache v2 license (license terms in the root directory or at https://www.apache.org/licenses/LICENSE-2.0). @@ -24,7 +24,7 @@ type StorageKey* = UInt256 StorageValue* = UInt256 Bytecode* = Bytes - BlockAccessIndex* = uint16 + BlockAccessIndex* = uint64 Balance* = UInt256 Nonce* = AccountNonce