diff --git a/crates/transaction-pool/src/lib.rs b/crates/transaction-pool/src/lib.rs index 1ecfdf53b..0b07995d3 100644 --- a/crates/transaction-pool/src/lib.rs +++ b/crates/transaction-pool/src/lib.rs @@ -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 EthTransactionPool