Update 0_beacon-chain.md

This commit is contained in:
Justin 2019-03-14 18:57:17 +00:00 committed by GitHub
parent 4442dfffb9
commit 23d15f51a7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -1014,14 +1014,14 @@ def get_beacon_proposer_index(state: BeaconState,
assert previous_epoch <= epoch <= next_epoch
first_committee, _ = get_crosslink_committees_at_slot(state, slot, registry_change)[0] i = 0
while i < len(first_committee):
first_committee, _ = get_crosslink_committees_at_slot(state, slot, registry_change)[0]
i = 0
while True:
rand_byte = hash(generate_seed(get_current_epoch(state)) + int_to_bytes8(i // 32))[i % 32]
candidate = first_committee[(epoch % i) % len(first_committee)]
if get_effective_balance(state, candidate) * 256 > MAX_DEPOSIT_AMOUNT * rand_byte:
return candidate
i += 1
return first_committee[epoch % len(first_committee)]
```
### `verify_merkle_branch`