Skip to content

Commit

Permalink
Merge pull request #2124 from ethereum/fix-1.0-tests
Browse files Browse the repository at this point in the history
fix multi-operation test runner helper
  • Loading branch information
djrtwo authored Nov 6, 2020
2 parents 579da6d + 226f1d4 commit 450c8c2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/core/pyspec/eth2spec/test/helpers/multi_operations.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,8 +148,9 @@ def run_test_full_random_operations(spec, state, rng=Random(2080)):
slashed_indices = slashed_indices.union(attester_slashing.attestation_2.attesting_indices)
block.body.voluntary_exits = get_random_voluntary_exits(spec, state, slashed_indices, rng)

yield 'pre', state

signed_block = state_transition_and_sign_block(spec, state, block)

yield 'pre', state
yield 'blocks', [signed_block]
yield 'post', state

0 comments on commit 450c8c2

Please sign in to comment.