Update specs/core/1_new_shards.md

Co-Authored-By: Hsiao-Wei Wang <hwwang156@gmail.com>
This commit is contained in:
vbuterin 2019-11-05 12:17:50 -08:00 committed by Danny Ryan
parent c9cc110ab1
commit 2ea8eb9cc3
No known key found for this signature in database
GPG Key ID: 2765A792E42CE07A
1 changed files with 1 additions and 1 deletions

View File

@ -494,7 +494,7 @@ def process_light_client_signatures(state: BeaconState, block: BeaconBlock) -> N
### Epoch transition ### Epoch transition
```python ```python
def phase_1_epoch_transition(state): def phase_1_epoch_transition(state: BeaconState) -> None:
# Slowly remove validators from the "online" set if they do not show up # Slowly remove validators from the "online" set if they do not show up
for index in range(len(state.validators)): for index in range(len(state.validators)):
if state.online_countdown[index] != 0: if state.online_countdown[index] != 0: