Update some shard u16 to u64

This is pretty hacky, is just serving my purpose for `BeaconChain`.
These structs will need to be fully updated to the latest spec.
This commit is contained in:
Paul Hauner
2018-12-12 18:35:31 +11:00
parent 92786520e4
commit 56dc73fbd1
3 changed files with 3 additions and 3 deletions

View File

@@ -7,7 +7,7 @@ pub const DEPOSIT_GWEI: u64 = 32_000_000_000;
/// Inducts validators into a `CrystallizedState`.
pub struct ValidatorInductor {
pub current_slot: u64,
pub shard_count: u16,
pub shard_count: u64,
validators: Vec<ValidatorRecord>,
empty_validator_start: usize,
}