From 235425aaf0088e8d3ffed687a0ec8215bc493a8d Mon Sep 17 00:00:00 2001 From: Paul Hauner Date: Sat, 26 Jan 2019 14:58:48 +1100 Subject: [PATCH] Fix field name error on eth1_data `eth1_data_vote.data` > `eth1_data_vote.eth1_data` --- specs/core/0_beacon-chain.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/specs/core/0_beacon-chain.md b/specs/core/0_beacon-chain.md index 0c0869b6f..d3ee1b9d5 100644 --- a/specs/core/0_beacon-chain.md +++ b/specs/core/0_beacon-chain.md @@ -1615,7 +1615,7 @@ Define the following helpers to process attestation inclusion rewards and inclus If `state.slot % ETH1_DATA_VOTING_PERIOD == 0`: -* Set `state.latest_eth1_data = eth1_data_vote.data` if `eth1_data_vote.vote_count * 2 > ETH1_DATA_VOTING_PERIOD` for some `eth1_data_vote` in `state.eth1_data_votes`. +* Set `state.latest_eth1_data = eth1_data_vote.eth1_data` if `eth1_data_vote.vote_count * 2 > ETH1_DATA_VOTING_PERIOD` for some `eth1_data_vote` in `state.eth1_data_votes`. * Set `state.eth1_data_votes = []`. ### Justification