From 6f5a8655088914f197fa4233853ca83418ae3f85 Mon Sep 17 00:00:00 2001 From: Alex Stokes Date: Wed, 9 Jan 2019 14:35:26 -0600 Subject: [PATCH] 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. --- specs/core/0_beacon-chain.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/specs/core/0_beacon-chain.md b/specs/core/0_beacon-chain.md index 15ae02eda..c9257620d 100644 --- a/specs/core/0_beacon-chain.md +++ b/specs/core/0_beacon-chain.md @@ -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, } ```