Merge pull request #2095 from ethereum/val-typo

fix minor typo in validator guide
This commit is contained in:
Diederik Loerakker 2020-10-08 21:28:29 +02:00 committed by GitHub
commit ddfb74c71f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -289,7 +289,7 @@ class Eth1Block(Container):
Let `get_eth1_data(block: Eth1Block) -> Eth1Data` be the function that returns the Eth1 data for a given Eth1 block.
An honest block proposer sets `block.body.eth1_data = get_eth1_vote(state)` where:
An honest block proposer sets `block.body.eth1_data = get_eth1_vote(state, eth1_chain)` where:
```python
def compute_time_at_slot(state: BeaconState, slot: Slot) -> uint64: