remove print statements

This commit is contained in:
Alex Stokes 2021-08-16 13:10:58 -06:00
parent dd58c702d1
commit 471cc870c3
No known key found for this signature in database
GPG Key ID: 99B3D88FD6C55A69

View File

@ -48,11 +48,9 @@ def run_block_processing_to(spec, state, block, process_name: str):
A test prepares a pre-state by calling this function, output the pre-state,
and it can then proceed to run the returned callable, and output a post-state.
"""
print(f"state.slot {state.slot} block.slot {block.slot}")
# transition state to slot before block state transition
if state.slot < block.slot:
spec.process_slots(state, block.slot)
print(f"state.slot {state.slot} block.slot {block.slot} A")
# process components of block transition
for name, call in get_process_calls(spec).items():