diff --git a/specs/core/1_new_shards.md b/specs/core/1_new_shards.md index 2d199a640..adc8fb412 100644 --- a/specs/core/1_new_shards.md +++ b/specs/core/1_new_shards.md @@ -211,6 +211,8 @@ def process_attestation(state: BeaconState, attestation: Attestation) -> None: state.previous_epoch_attestations.append(pending_attestation) ``` +Check the length of attestations using `len(block.attestations) <= 4 * get_committee_count(state, state.slot)`. + ### Light client processing ```python