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

Commit fd0a4ff

Browse files
committed
flake8
1 parent 3a88f3c commit fd0a4ff

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

ethereum/blocks.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1447,7 +1447,8 @@ def genesis(env, **kwargs):
14471447
block.set_nonce(addr, utils.parse_int_or_hex(data['nonce']))
14481448
if 'storage' in data:
14491449
for k, v in data['storage'].items():
1450-
block.set_storage_data(addr, utils.big_endian_to_int(decode_hex(k[2:])),
1450+
block.set_storage_data(addr,
1451+
utils.big_endian_to_int(decode_hex(k[2:])),
14511452
decode_hex(v[2:]))
14521453
block.commit_state()
14531454
block.state.db.commit()

0 commit comments

Comments
 (0)