Skip to content

Commit c353bd5

Browse files
committed
minor fix
1 parent 0aa92a0 commit c353bd5

File tree

1 file changed

+1
-1
lines changed
  • src/ethereum_spec_tools/evm_tools/t8n

1 file changed

+1
-1
lines changed

src/ethereum_spec_tools/evm_tools/t8n/env.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ def read_block_hashes(self, data: Any, t8n: "T8N") -> None:
298298
clean_block_hashes: Dict[int, Hash32] = {}
299299
if "blockHashes" in data:
300300
for key, value in data["blockHashes"].items():
301-
int_key = int(key, 16)
301+
int_key = int(key)
302302
clean_block_hashes[int_key] = Hash32(hex_to_bytes(value))
303303

304304
# Store a maximum of 256 block hashes.

0 commit comments

Comments
 (0)