From 9c07e26a4d8693b32c13d050aba89b7314551210 Mon Sep 17 00:00:00 2001 From: protolambda Date: Mon, 6 Jan 2020 00:25:18 +0100 Subject: [PATCH] length assert not applicable anymore --- specs/core/1_beacon-chain.md | 1 - 1 file changed, 1 deletion(-) diff --git a/specs/core/1_beacon-chain.md b/specs/core/1_beacon-chain.md index 384c75f51..af7e6c299 100644 --- a/specs/core/1_beacon-chain.md +++ b/specs/core/1_beacon-chain.md @@ -859,7 +859,6 @@ def verify_shard_transition_false_positives(state: BeaconState, block_body: Beac ```python def process_light_client_signatures(state: BeaconState, block_body: BeaconBlockBody) -> None: committee = get_light_client_committee(state, get_current_epoch(state)) - assert len(block_body.light_client_signature_bitfield) == len(committee) total_reward = Gwei(0) signer_keys = [] for bit_index, participant_index in enumerate(committee):