Add proposer_index to shard block

This commit is contained in:
Hsiao-Wei Wang 2020-04-02 10:43:50 +08:00
parent feb27a14be
commit e9f1e4186d
No known key found for this signature in database
GPG Key ID: 95B070122902DEA4

View File

@ -299,6 +299,7 @@ class ShardBlock(Container):
shard_parent_root: Root
beacon_parent_root: Root
slot: Slot
proposer_index: ValidatorIndex
body: ByteList[MAX_SHARD_BLOCK_SIZE]
```
@ -317,6 +318,7 @@ class ShardBlockHeader(Container):
shard_parent_root: Root
beacon_parent_root: Root
slot: Slot
proposer_index: ValidatorIndex
body_root: Root
```