Update specs/core/0_beacon-chain.md

Co-Authored-By: vbuterin <v@buterin.com>
This commit is contained in:
Hsiao-Wei Wang 2019-02-06 18:33:29 -06:00 committed by GitHub
parent 4ec721f3b7
commit 6a5b7540da
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -718,7 +718,7 @@ def shuffle(values: List[Any], seed: Bytes32) -> List[Any]:
return flip if bit else pos
indices = [permute(v) for v in indices]
return [v[index] for index in indices]
return [values[index] for index in indices]
```
### `split`