Reorder type so the ssz serialization matches other uses

There is an order based on the Vyper deposit contract which should be maintained
here. There is also a reference to it when processing `Deposit` messages.

This commit corrects the order here so all serializations will match.
This commit is contained in:
Alex Stokes 2019-01-09 14:35:26 -06:00
parent 4ea430207b
commit 6f5a865508
No known key found for this signature in database
GPG Key ID: 51CE1721B245C086
1 changed files with 2 additions and 2 deletions

View File

@ -368,12 +368,12 @@ Unless otherwise indicated, code appearing in `this style` is to be interpreted
```python
{
# Deposit input
'deposit_input': DepositInput,
# Amount in Gwei
'amount': 'uint64',
# Timestamp from deposit contract
'timestamp': 'uint64',
# Deposit input
'deposit_input': DepositInput,
}
```