Update 0_beacon-chain.md

This commit is contained in:
Justin 2019-04-14 00:47:14 +10:00 committed by GitHub
parent a3b020384f
commit 30fe6f5657
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -1867,9 +1867,9 @@ Run the following function:
```python
def process_crosslinks(state: BeaconState) -> None:
start_epoch = get_previous_epoch(state)
previous_epoch = get_previous_epoch(state)
next_epoch = get_current_epoch(state) + 1
for slot in range(get_epoch_start_slot(start_epoch), get_epoch_start_slot(next_epoch)):
for slot in range(get_epoch_start_slot(previous_epoch), get_epoch_start_slot(next_epoch)):
for crosslink_committee, shard in get_crosslink_committees_at_slot(state, slot):
winning_root, participants = get_winning_root_and_participants(state, shard)
participating_balance = get_total_balance(state, participants)