remove redundant `mut`s (#31696)
This commit is contained in:
parent
e84613b54c
commit
9fd6f09984
|
@ -7193,7 +7193,7 @@ impl AccountsDb {
|
||||||
&self,
|
&self,
|
||||||
storages: &SortedStorages,
|
storages: &SortedStorages,
|
||||||
slots_per_epoch: Slot,
|
slots_per_epoch: Slot,
|
||||||
mut stats: &mut crate::accounts_hash::HashStats,
|
stats: &mut crate::accounts_hash::HashStats,
|
||||||
) {
|
) {
|
||||||
// Nothing to do if ancient append vecs are enabled.
|
// Nothing to do if ancient append vecs are enabled.
|
||||||
// Ancient slots will be visited by the ancient append vec code and dealt with correctly.
|
// Ancient slots will be visited by the ancient append vec code and dealt with correctly.
|
||||||
|
@ -7428,7 +7428,7 @@ impl AccountsDb {
|
||||||
&self,
|
&self,
|
||||||
cache_hash_data: &CacheHashData,
|
cache_hash_data: &CacheHashData,
|
||||||
storages: &SortedStorages,
|
storages: &SortedStorages,
|
||||||
mut stats: &mut crate::accounts_hash::HashStats,
|
stats: &mut crate::accounts_hash::HashStats,
|
||||||
bins: usize,
|
bins: usize,
|
||||||
bin_range: &Range<usize>,
|
bin_range: &Range<usize>,
|
||||||
config: &CalcAccountsHashConfig<'_>,
|
config: &CalcAccountsHashConfig<'_>,
|
||||||
|
|
|
@ -86,7 +86,7 @@ impl AccountHashesFile {
|
||||||
// we have hashes to write but no file yet, so create a file that will auto-delete on drop
|
// we have hashes to write but no file yet, so create a file that will auto-delete on drop
|
||||||
self.count_and_writer = Some((0, BufWriter::new(tempfile().unwrap())));
|
self.count_and_writer = Some((0, BufWriter::new(tempfile().unwrap())));
|
||||||
}
|
}
|
||||||
let mut count_and_writer = self.count_and_writer.as_mut().unwrap();
|
let count_and_writer = self.count_and_writer.as_mut().unwrap();
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
std::mem::size_of::<Hash>(),
|
std::mem::size_of::<Hash>(),
|
||||||
count_and_writer.1.write(hash.as_ref()).unwrap()
|
count_and_writer.1.write(hash.as_ref()).unwrap()
|
||||||
|
@ -1041,7 +1041,7 @@ impl AccountsHasher {
|
||||||
pub fn rest_of_hash_calculation(
|
pub fn rest_of_hash_calculation(
|
||||||
&self,
|
&self,
|
||||||
data_sections_by_pubkey: Vec<SortedDataByPubkey<'_>>,
|
data_sections_by_pubkey: Vec<SortedDataByPubkey<'_>>,
|
||||||
mut stats: &mut HashStats,
|
stats: &mut HashStats,
|
||||||
) -> (Hash, u64) {
|
) -> (Hash, u64) {
|
||||||
let (hashes, total_lamports) = self.de_dup_accounts(
|
let (hashes, total_lamports) = self.de_dup_accounts(
|
||||||
&data_sections_by_pubkey,
|
&data_sections_by_pubkey,
|
||||||
|
|
|
@ -321,7 +321,7 @@ impl CacheHashData {
|
||||||
capacity,
|
capacity,
|
||||||
};
|
};
|
||||||
|
|
||||||
let mut header = cache_file.get_header_mut();
|
let header = cache_file.get_header_mut();
|
||||||
header.count = entries;
|
header.count = entries;
|
||||||
|
|
||||||
stats.cache_file_size = capacity as usize;
|
stats.cache_file_size = capacity as usize;
|
||||||
|
|
Loading…
Reference in New Issue