Update test_libs/pyspec/eth2spec/test/sanity/test_blocks.py

Co-Authored-By: Danny Ryan <dannyjryan@gmail.com>
This commit is contained in:
Diederik Loerakker 2019-11-13 00:20:17 +01:00 committed by GitHub
parent c061abdd75
commit 1202502bcb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ def test_empty_block_transition(spec, state):
assert len(state.eth1_data_votes) == pre_eth1_votes + 1
assert spec.get_block_root_at_slot(state, pre_slot) == block.parent_root
assert spec.get_randao_mix(state, spec.get_current_epoch(state)) != spec.Root()
assert spec.get_randao_mix(state, spec.get_current_epoch(state)) != spec.Bytes32()
@with_all_phases