feat: expose blob_store fn on top level pool type (#14205)

This commit is contained in:
Matthias Seitz
2025-02-04 17:05:05 +01:00
committed by GitHub
parent 7fb74066b8
commit 17dfad5828

View File

@ -279,6 +279,11 @@ where
pub fn is_exceeded(&self) -> bool {
self.pool.is_exceeded()
}
/// Returns the configured blob store.
pub fn blob_store(&self) -> &S {
self.pool.blob_store()
}
}
impl<Client, S> EthTransactionPool<Client, S>