Call StatusCache::append() directly (#26125)

This commit is contained in:
Brooks Prumo 2022-06-22 07:42:01 -05:00 committed by GitHub
parent 31c9b03049
commit 8a18e02f80
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 6 deletions

View File

@ -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>);

View File

@ -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();