chore(txpool): explicitly deref RwLockReadGuard in PartialEq impl (#21336)

This commit is contained in:
Seola Oh
2026-01-23 04:35:00 +09:00
committed by GitHub
parent 937a7f226d
commit a02508600c

View File

@@ -56,7 +56,7 @@ struct InMemoryBlobStoreInner {
impl PartialEq for InMemoryBlobStoreInner {
fn eq(&self, other: &Self) -> bool {
self.store.read().eq(&other.store.read())
self.store.read().eq(&*other.store.read())
}
}