Call StatusCache::append() directly (#26125)
This commit is contained in:
parent
31c9b03049
commit
8a18e02f80
|
@ -611,11 +611,6 @@ impl StatusCacheRc {
|
|||
.sorted()
|
||||
.collect()
|
||||
}
|
||||
|
||||
pub fn append(&self, slot_deltas: &[BankSlotDelta]) {
|
||||
let mut sc = self.status_cache.write().unwrap();
|
||||
sc.append(slot_deltas);
|
||||
}
|
||||
}
|
||||
|
||||
pub type TransactionCheckResult = (Result<()>, Option<NoncePartial>);
|
||||
|
|
|
@ -1663,7 +1663,7 @@ fn rebuild_bank_from_snapshots(
|
|||
Ok(slot_deltas)
|
||||
})?;
|
||||
|
||||
bank.src.append(&slot_deltas);
|
||||
bank.src.status_cache.write().unwrap().append(&slot_deltas);
|
||||
|
||||
bank.prepare_rewrites_for_hash();
|
||||
|
||||
|
|
Loading…
Reference in New Issue