allow hash calc to use all threads at startup (#25369)
This commit is contained in:
parent
467431de89
commit
9ef0acdf5d
|
@ -758,6 +758,7 @@ impl Accounts {
|
||||||
.collect())
|
.collect())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// only called at startup vs steady-state runtime
|
||||||
pub fn calculate_capitalization(
|
pub fn calculate_capitalization(
|
||||||
&self,
|
&self,
|
||||||
ancestors: &Ancestors,
|
ancestors: &Ancestors,
|
||||||
|
@ -768,7 +769,7 @@ impl Accounts {
|
||||||
rent_collector: &RentCollector,
|
rent_collector: &RentCollector,
|
||||||
) -> u64 {
|
) -> u64 {
|
||||||
let use_index = false;
|
let use_index = false;
|
||||||
let is_startup = false; // there may be conditions where this is called at startup.
|
let is_startup = true;
|
||||||
self.accounts_db
|
self.accounts_db
|
||||||
.update_accounts_hash_with_index_option(
|
.update_accounts_hash_with_index_option(
|
||||||
use_index,
|
use_index,
|
||||||
|
|
|
@ -6397,7 +6397,8 @@ impl Bank {
|
||||||
Ok(sanitized_tx)
|
Ok(sanitized_tx)
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn calculate_capitalization(&self, debug_verify: bool) -> u64 {
|
/// only called at startup vs steady-state runtime
|
||||||
|
fn calculate_capitalization(&self, debug_verify: bool) -> u64 {
|
||||||
let can_cached_slot_be_unflushed = true; // implied yes
|
let can_cached_slot_be_unflushed = true; // implied yes
|
||||||
self.rc.accounts.calculate_capitalization(
|
self.rc.accounts.calculate_capitalization(
|
||||||
&self.ancestors,
|
&self.ancestors,
|
||||||
|
@ -6409,6 +6410,7 @@ impl Bank {
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// only called at startup vs steady-state runtime
|
||||||
pub fn calculate_and_verify_capitalization(&self, debug_verify: bool) -> bool {
|
pub fn calculate_and_verify_capitalization(&self, debug_verify: bool) -> bool {
|
||||||
let calculated = self.calculate_capitalization(debug_verify);
|
let calculated = self.calculate_capitalization(debug_verify);
|
||||||
let expected = self.capitalization();
|
let expected = self.capitalization();
|
||||||
|
|
Loading…
Reference in New Issue