missed `body_summary` attribute when accessing`ShardBlobBodySummary.beacon_block_root`

This commit is contained in:
ericsson 2021-04-24 00:12:28 +03:00
parent dcb013ccf2
commit ee360df689
1 changed files with 1 additions and 1 deletions

View File

@ -559,7 +559,7 @@ def process_shard_header(state: BeaconState,
assert header.shard < get_active_shard_count(state, header_epoch) assert header.shard < get_active_shard_count(state, header_epoch)
# Verify that the block root matches, # Verify that the block root matches,
# to ensure the header will only be included in this specific Beacon Chain sub-tree. # to ensure the header will only be included in this specific Beacon Chain sub-tree.
assert header.beacon_block_root == get_block_root_at_slot(state, header.slot - 1) assert header.body_summary.beacon_block_root == get_block_root_at_slot(state, header.slot - 1)
# Verify proposer # Verify proposer
assert header.proposer_index == get_shard_proposer_index(state, header.slot, header.shard) assert header.proposer_index == get_shard_proposer_index(state, header.slot, header.shard)
# Verify signature # Verify signature