Skip to content

Commit

Permalink
Add mandatory deposit index ordering
Browse files Browse the repository at this point in the history
Co-requisite with #589
  • Loading branch information
vbuterin authored Feb 9, 2019
1 parent 4a2416a commit 057364a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions specs/core/0_beacon-chain.md
Original file line number Diff line number Diff line change
Expand Up @@ -526,6 +526,7 @@ The following data structures are defined as [SimpleSerialize (SSZ)](https://git
# Ethereum 1.0 chain data
'latest_eth1_data': Eth1Data,
'eth1_data_votes': [Eth1DataVote],
'deposit_count': 'uint64'
}
```

Expand Down Expand Up @@ -1717,6 +1718,7 @@ Verify that `len(block.body.deposits) <= MAX_DEPOSITS`.
For each `deposit` in `block.body.deposits`:

* Let `serialized_deposit_data` be the serialized form of `deposit.deposit_data`. It should be 8 bytes for `deposit_data.amount` followed by 8 bytes for `deposit_data.timestamp` and then the `DepositInput` bytes. That is, it should match `deposit_data` in the [Ethereum 1.0 deposit contract](#ethereum-10-deposit-contract) of which the hash was placed into the Merkle tree.
* Verify that `deposit.index == state.deposit_index`.
* Verify that `verify_merkle_branch(hash(serialized_deposit_data), deposit.branch, DEPOSIT_CONTRACT_TREE_DEPTH, deposit.index, state.latest_eth1_data.deposit_root)` is `True`.

```python
Expand Down Expand Up @@ -1745,6 +1747,8 @@ process_deposit(
)
```

* Set `state.deposit_index += 1`.

##### Exits

Verify that `len(block.body.exits) <= MAX_EXITS`.
Expand Down

0 comments on commit 057364a

Please sign in to comment.