From 471cc870c30bf294b939e94e58f9340b2ca2c298 Mon Sep 17 00:00:00 2001 From: Alex Stokes Date: Mon, 16 Aug 2021 13:10:58 -0600 Subject: [PATCH] remove print statements --- tests/core/pyspec/eth2spec/test/helpers/block_processing.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/core/pyspec/eth2spec/test/helpers/block_processing.py b/tests/core/pyspec/eth2spec/test/helpers/block_processing.py index e82f62ed0..8721a772e 100644 --- a/tests/core/pyspec/eth2spec/test/helpers/block_processing.py +++ b/tests/core/pyspec/eth2spec/test/helpers/block_processing.py @@ -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():