Merge pull request #382 from ethereum/remove_shard_reassignment_record

Remove `ShardReassignmentRecord`
This commit is contained in:
Hsiao-Wei Wang 2019-01-02 23:48:04 +08:00 committed by GitHub
commit 78e73633bc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 14 deletions

View File

@ -46,7 +46,6 @@
- [`ValidatorRecord`](#validatorrecord)
- [`CrosslinkRecord`](#crosslinkrecord)
- [`ShardCommittee`](#shardcommittee)
- [`ShardReassignmentRecord`](#shardreassignmentrecord)
- [`CandidatePoWReceiptRootRecord`](#candidatepowreceiptrootrecord)
- [`PendingAttestationRecord`](#pendingattestationrecord)
- [`ForkData`](#forkdata)
@ -554,19 +553,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