From a3f67fd606e5fecf75c805750f2d33f0845f7dd4 Mon Sep 17 00:00:00 2001 From: vbuterin Date: Sat, 11 Jan 2020 12:42:34 +0800 Subject: [PATCH] Update specs/core/1_beacon-chain.md --- specs/core/1_beacon-chain.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/specs/core/1_beacon-chain.md b/specs/core/1_beacon-chain.md index 64b71c79bd..724c160c19 100644 --- a/specs/core/1_beacon-chain.md +++ b/specs/core/1_beacon-chain.md @@ -691,7 +691,7 @@ def apply_shard_transition(state: BeaconState, shard: Shard, transition: ShardTr def process_crosslink_for_shard(state: BeaconState, shard: Shard, shard_transition: ShardTransition, - attestations: Sequence[Attestation]) -> Root:US + attestations: Sequence[Attestation]) -> Root: committee = get_beacon_committee(state, get_current_epoch(state), shard) online_indices = get_online_validator_indices(state) @@ -908,4 +908,3 @@ def process_light_client_committee_updates(state: BeaconState) -> None: new_committee = get_light_client_committee(state, get_current_epoch(state) + LIGHT_CLIENT_COMMITTEE_PERIOD) state.next_light_committee = committee_to_compact_committee(state, new_committee) ``` -