Update specs/core/1_beacon-chain.md

This commit is contained in:
vbuterin 2020-01-11 12:42:34 +08:00 committed by Danny Ryan
parent 2a91b43eaf
commit 52fb929978
No known key found for this signature in database
GPG Key ID: 2765A792E42CE07A

View File

@ -35,7 +35,6 @@
- [`get_previous_slot`](#get_previous_slot)
- [`pack_compact_validator`](#pack_compact_validator)
- [`committee_to_compact_committee`](#committee_to_compact_committee)
- [`chunks_to_body_root`](#chunks_to_body_root)
- [`compute_shard_from_committee_index`](#compute_shard_from_committee_index)
- [Beacon state accessors](#beacon-state-accessors)
- [`get_active_shard_count`](#get_active_shard_count)
@ -905,4 +904,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)
```