mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
feat: expose blob_store fn on top level pool type (#14205)
This commit is contained in:
@ -279,6 +279,11 @@ where
|
|||||||
pub fn is_exceeded(&self) -> bool {
|
pub fn is_exceeded(&self) -> bool {
|
||||||
self.pool.is_exceeded()
|
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>
|
impl<Client, S> EthTransactionPool<Client, S>
|
||||||
|
|||||||
Reference in New Issue
Block a user