consolidate DEFAULT_HASHES_PER_TICK (#14463)

This commit is contained in:
Jeff Washington (jwash)
2021-01-07 09:49:42 -06:00
committed by GitHub
parent 938d482135
commit 773b21b34e
3 changed files with 4 additions and 6 deletions

View File

@ -1498,10 +1498,7 @@ mod tests {
let poh_config = PohConfig {
target_tick_duration: Duration::from_millis(solana_sdk::clock::MS_PER_TICK),
// make PoH rate really fast to cause the panic condition
hashes_per_tick: Some(
100 * solana_sdk::clock::DEFAULT_HASHES_PER_SECOND
/ solana_sdk::clock::DEFAULT_TICKS_PER_SECOND,
),
hashes_per_tick: Some(100 * solana_sdk::clock::DEFAULT_HASHES_PER_TICK),
..PohConfig::default()
};
let genesis_config = GenesisConfig {