Simplifies AHV's `test_max_hashes()` (#28754)
This commit is contained in:
parent
0bc66c82aa
commit
0b9426e734
|
@ -535,14 +535,12 @@ mod tests {
|
||||||
incremental_snapshot_archive_interval_slots: Slot::MAX,
|
incremental_snapshot_archive_interval_slots: Slot::MAX,
|
||||||
..SnapshotConfig::default()
|
..SnapshotConfig::default()
|
||||||
};
|
};
|
||||||
let accounts = Arc::new(solana_runtime::accounts::Accounts::default_for_tests());
|
|
||||||
let expected_hash = Hash::from_str("GKot5hBsd81kMupNCXHaqbhv3huEbxAFMLnpcX2hniwn").unwrap();
|
let expected_hash = Hash::from_str("GKot5hBsd81kMupNCXHaqbhv3huEbxAFMLnpcX2hniwn").unwrap();
|
||||||
for i in 0..MAX_SNAPSHOT_HASHES + 1 {
|
for i in 0..MAX_SNAPSHOT_HASHES + 1 {
|
||||||
|
let slot = full_snapshot_archive_interval_slots + i as u64;
|
||||||
let accounts_package = AccountsPackage {
|
let accounts_package = AccountsPackage {
|
||||||
package_type: AccountsPackageType::AccountsHashVerifier,
|
slot,
|
||||||
slot: full_snapshot_archive_interval_slots + i as u64,
|
block_height: slot,
|
||||||
block_height: full_snapshot_archive_interval_slots + i as u64,
|
|
||||||
accounts: Arc::clone(&accounts),
|
|
||||||
..AccountsPackage::default_for_tests()
|
..AccountsPackage::default_for_tests()
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -558,7 +556,7 @@ mod tests {
|
||||||
Some(&snapshot_config),
|
Some(&snapshot_config),
|
||||||
);
|
);
|
||||||
|
|
||||||
// sleep for 1ms to create a newer timestmap for gossip entry
|
// sleep for 1ms to create a newer timestamp for gossip entry
|
||||||
// otherwise the timestamp won't be newer.
|
// otherwise the timestamp won't be newer.
|
||||||
std::thread::sleep(Duration::from_millis(1));
|
std::thread::sleep(Duration::from_millis(1));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue