Fix some tests

This commit is contained in:
Michael Sproul
2020-05-27 16:58:36 +10:00
parent c4340af056
commit d0ca114592
3 changed files with 4 additions and 4 deletions

View File

@@ -51,7 +51,7 @@ Typical Responses | 200
"max_seed_lookahead": 4, "max_seed_lookahead": 4,
"min_epochs_to_inactivity_penalty": 4, "min_epochs_to_inactivity_penalty": 4,
"min_validator_withdrawability_delay": 256, "min_validator_withdrawability_delay": 256,
"persistent_committee_period": 2048, "shard_committee_period": 2048,
"base_reward_factor": 64, "base_reward_factor": 64,
"whistleblower_reward_quotient": 512, "whistleblower_reward_quotient": 512,
"proposer_reward_quotient": 8, "proposer_reward_quotient": 8,
@@ -113,7 +113,7 @@ Typical Responses | 200
"max_seed_lookahead": 4, "max_seed_lookahead": 4,
"min_epochs_to_inactivity_penalty": 4, "min_epochs_to_inactivity_penalty": 4,
"min_validator_withdrawability_delay": 256, "min_validator_withdrawability_delay": 256,
"persistent_committee_period": 2048, "shard_committee_period": 2048,
"base_reward_factor": 64, "base_reward_factor": 64,
"whistleblower_reward_quotient": 512, "whistleblower_reward_quotient": 512,
"proposer_reward_quotient": 8, "proposer_reward_quotient": 8,

View File

@@ -24,7 +24,7 @@ min_seed_lookahead = 1
max_seed_lookahead = 4 max_seed_lookahead = 4
min_epochs_to_inactivity_penalty = 4 min_epochs_to_inactivity_penalty = 4
min_validator_withdrawability_delay = 256 min_validator_withdrawability_delay = 256
persistent_committee_period = 2048 shard_committee_period = 2048
base_reward_factor = 64 base_reward_factor = 64
whistleblower_reward_quotient = 512 whistleblower_reward_quotient = 512
proposer_reward_quotient = 8 proposer_reward_quotient = 8

View File

@@ -62,7 +62,7 @@ impl ExitTest {
fn run(self) -> BeaconState<E> { fn run(self) -> BeaconState<E> {
let spec = &E::default_spec(); let spec = &E::default_spec();
let expected = self.expected.clone(); let expected = self.expected.clone();
assert_eq!(STATE_EPOCH, spec.persistent_committee_period); assert_eq!(STATE_EPOCH, spec.shard_committee_period);
let (block, mut state) = self.block_and_pre_state(); let (block, mut state) = self.block_and_pre_state();