From 853c34eb60a707ede5339597af666f380f1218e4 Mon Sep 17 00:00:00 2001 From: Danny Ryan Date: Wed, 5 Jun 2019 09:50:15 -0600 Subject: [PATCH] add beaconblockheader back to toc --- specs/core/0_beacon-chain.md | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/specs/core/0_beacon-chain.md b/specs/core/0_beacon-chain.md index 58bfc8bf4..f5fc0c98e 100644 --- a/specs/core/0_beacon-chain.md +++ b/specs/core/0_beacon-chain.md @@ -32,6 +32,7 @@ - [`Eth1Data`](#eth1data) - [`HistoricalBatch`](#historicalbatch) - [`DepositData`](#depositdata) + - [`BeaconBlockHeader`](#beaconblockheader) - [Beacon operations](#beacon-operations) - [`ProposerSlashing`](#proposerslashing) - [`AttesterSlashing`](#attesterslashing) @@ -351,17 +352,6 @@ class IndexedAttestation(Container): signature: Bytes96 ``` -#### `BeaconBlockHeader` - -```python -class BeaconBlockHeader(Container): - slot: uint64 - parent_root: Bytes32 - state_root: Bytes32 - body_root: Bytes32 - signature: Bytes96 -``` - #### `PendingAttestation` ```python @@ -412,6 +402,17 @@ class DepositData(Container): signature: Bytes96 ``` +#### `BeaconBlockHeader` + +```python +class BeaconBlockHeader(Container): + slot: uint64 + parent_root: Bytes32 + state_root: Bytes32 + body_root: Bytes32 + signature: Bytes96 +``` + ### Beacon operations #### `ProposerSlashing`