Rename AccountsPackage::root to AccountsPackage::slot

This commit is contained in:
Michael Vines
2021-01-04 13:22:58 -08:00
parent 9f70f7dc3e
commit 141e6706e6
4 changed files with 13 additions and 13 deletions

View File

@ -83,17 +83,17 @@ impl AccountsHashVerifier {
snapshot_interval_slots: u64,
) {
if fault_injection_rate_slots != 0
&& accounts_package.root % fault_injection_rate_slots == 0
&& accounts_package.slot % fault_injection_rate_slots == 0
{
// For testing, publish an invalid hash to gossip.
use rand::{thread_rng, Rng};
use solana_sdk::hash::extend_and_hash;
warn!("inserting fault at slot: {}", accounts_package.root);
warn!("inserting fault at slot: {}", accounts_package.slot);
let rand = thread_rng().gen_range(0, 10);
let hash = extend_and_hash(&accounts_package.hash, &[rand]);
hashes.push((accounts_package.root, hash));
hashes.push((accounts_package.slot, hash));
} else {
hashes.push((accounts_package.root, accounts_package.hash));
hashes.push((accounts_package.slot, accounts_package.hash));
}
while hashes.len() > MAX_SNAPSHOT_HASHES {
@ -234,7 +234,7 @@ mod tests {
let accounts_package = AccountsPackage {
hash: hash(&[i as u8]),
block_height: 100 + i as u64,
root: 100 + i as u64,
slot: 100 + i as u64,
slot_deltas: vec![],
snapshot_links,
tar_output_file: PathBuf::from("."),