Add assertion to `test_shorter_chain_but_heavier_weight`

This commit is contained in:
Hsiao-Wei Wang 2021-12-02 17:21:42 +08:00
parent 6f3379c7be
commit a399d953d3
No known key found for this signature in database
GPG Key ID: 1111A8A81778319E
1 changed files with 3 additions and 0 deletions

View File

@ -166,6 +166,9 @@ def test_shorter_chain_but_heavier_weight(spec, state):
signed_short_block = state_transition_and_sign_block(spec, short_state, short_block)
yield from tick_and_add_block(spec, store, signed_short_block, test_steps)
# Since the long chain has higher proposer_score at slot 1, the latest long block is the head
assert spec.get_head(store) == spec.hash_tree_root(long_block)
short_attestation = get_valid_attestation(spec, short_state, short_block.slot, signed=True)
yield from tick_and_run_on_attestation(spec, store, short_attestation, test_steps)