Skip to content
This repository was archived by the owner on May 23, 2023. It is now read-only.

Commit 3a88f3c

Browse files
committed
dirty
1 parent 25a026f commit 3a88f3c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ethereum/blocks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1448,7 +1448,7 @@ def genesis(env, **kwargs):
14481448
if 'storage' in data:
14491449
for k, v in data['storage'].items():
14501450
block.set_storage_data(addr, utils.big_endian_to_int(decode_hex(k[2:])),
1451-
utils.big_endian_to_int(decode_hex(v[2:])))
1451+
decode_hex(v[2:]))
14521452
block.commit_state()
14531453
block.state.db.commit()
14541454
# genesis block has predefined state root (so no additional finalization

0 commit comments

Comments
 (0)