mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-02-19 03:04:27 -05:00
chore(txpool): explicitly deref RwLockReadGuard in PartialEq impl (#21336)
This commit is contained in:
@@ -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())
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user