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

Commit 7853173

Browse files
committed
Use print_function
1 parent 8f92d41 commit 7853173

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ethereum/testutils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ def run_state_test1(params, mode):
297297
'previousHash', 'currentCoinbase',
298298
'currentDifficulty', 'currentNumber'])
299299
assert len(env['currentCoinbase']) == 40
300-
300+
301301
state = State(db=db,
302302
prev_headers=[mk_fake_header(i) for i in range(parse_int_or_hex(env['currentNumber']) -1, max(-1, parse_int_or_hex(env['currentNumber']) -257), -1)],
303303
block_number=parse_int_or_hex(env['currentNumber']),
@@ -351,7 +351,7 @@ def run_state_test1(params, mode):
351351

352352
time_pre = time.time()
353353
state.commit()
354-
print state.to_dict()
354+
print(state.to_dict())
355355
snapshot = state.snapshot()
356356
try:
357357
print('trying')

0 commit comments

Comments
 (0)