Remove `ShardReassignmentRecord`

This commit is contained in:
Hsiao-Wei Wang 2019-01-02 15:31:57 +08:00
parent d49b6e5087
commit 35adc9c61a
No known key found for this signature in database
GPG Key ID: 95B070122902DEA4
1 changed files with 0 additions and 15 deletions

View File

@ -46,7 +46,6 @@
- [`ValidatorRecord`](#validatorrecord)
- [`CrosslinkRecord`](#crosslinkrecord)
- [`ShardCommittee`](#shardcommittee)
- [`ShardReassignmentRecord`](#shardreassignmentrecord)
- [`CandidatePoWReceiptRootRecord`](#candidatepowreceiptrootrecord)
- [`PendingAttestationRecord`](#pendingattestationrecord)
- [`ForkData`](#forkdata)
@ -113,7 +112,6 @@
- [Crosslinks](#crosslinks-1)
- [Ejections](#ejections)
- [Validator registry](#validator-registry)
- [Proposer reshuffling](#proposer-reshuffling)
- [Final updates](#final-updates)
- [State root processing](#state-root-processing)
- [References](#references)
@ -556,19 +554,6 @@ Unless otherwise indicated, code appearing in `this style` is to be interpreted
}
```
#### `ShardReassignmentRecord`
```python
{
# Which validator to reassign
'validator_index': 'uint24',
# To which shard
'shard': 'uint64',
# When
'slot': 'uint64',
}
```
#### `CandidatePoWReceiptRootRecord`
```python