add beaconblockheader back to toc

This commit is contained in:
Danny Ryan 2019-06-05 09:50:15 -06:00 committed by GitHub
parent c250296d8a
commit 853c34eb60
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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`