Demote Arc<Bank> parameter to &Bank (#33130)
This commit is contained in:
parent
25d3db0c18
commit
3b108564f9
|
@ -41,7 +41,7 @@ impl CacheBlockMetaService {
|
||||||
}
|
}
|
||||||
Ok(bank) => {
|
Ok(bank) => {
|
||||||
let mut cache_block_meta_timer = Measure::start("cache_block_meta_timer");
|
let mut cache_block_meta_timer = Measure::start("cache_block_meta_timer");
|
||||||
Self::cache_block_meta(bank, &blockstore);
|
Self::cache_block_meta(&bank, &blockstore);
|
||||||
cache_block_meta_timer.stop();
|
cache_block_meta_timer.stop();
|
||||||
if cache_block_meta_timer.as_ms() > CACHE_BLOCK_TIME_WARNING_MS {
|
if cache_block_meta_timer.as_ms() > CACHE_BLOCK_TIME_WARNING_MS {
|
||||||
warn!(
|
warn!(
|
||||||
|
@ -57,7 +57,7 @@ impl CacheBlockMetaService {
|
||||||
Self { thread_hdl }
|
Self { thread_hdl }
|
||||||
}
|
}
|
||||||
|
|
||||||
fn cache_block_meta(bank: Arc<Bank>, blockstore: &Blockstore) {
|
fn cache_block_meta(bank: &Bank, blockstore: &Blockstore) {
|
||||||
if let Err(e) = blockstore.cache_block_time(bank.slot(), bank.clock().unix_timestamp) {
|
if let Err(e) = blockstore.cache_block_time(bank.slot(), bank.clock().unix_timestamp) {
|
||||||
error!("cache_block_time failed: slot {:?} {:?}", bank.slot(), e);
|
error!("cache_block_time failed: slot {:?} {:?}", bank.slot(), e);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue