Skip to content

Commit

Permalink
Merge pull request #1164 from ethereum/missing-colon
Browse files Browse the repository at this point in the history
add missing colon to v-guide
  • Loading branch information
protolambda committed Jun 10, 2019
2 parents 4902a77 + b56539a commit cf91694
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion specs/validator/0_beacon-chain-validator.md
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ def get_committee_assignment(

committees_per_slot = get_epoch_committee_count(state, epoch) // SLOTS_PER_EPOCH
epoch_start_slot = get_epoch_start_slot(epoch)
for slot in range(epoch_start_slot, epoch_start_slot + SLOTS_PER_EPOCH)
for slot in range(epoch_start_slot, epoch_start_slot + SLOTS_PER_EPOCH):
offset = committees_per_slot * (slot % SLOTS_PER_EPOCH)
slot_start_shard = (get_epoch_start_shard(state, epoch) + offset) % SHARD_COUNT
for i in range(committees_per_slot):
Expand Down

0 comments on commit cf91694

Please sign in to comment.