Merge branch 'dev' into proto-merge-test-gen

This commit is contained in:
protolambda
2019-04-15 16:35:38 +10:00
14 changed files with 229 additions and 350 deletions

View File

@@ -54,7 +54,7 @@ def test_invalid_slot(state):
def test_invalid_previous_block_root(state):
block = build_empty_block_for_next_slot(state)
block.previous_block_root = b'\12'*32 # invalid prev root
block.previous_block_root = b'\12' * 32 # invalid prev root
pre_state, post_state = run_block_header_processing(state, block, valid=False)
return pre_state, block, None