From 17dfad5828c717adf8d7900a6976bc5017ec3b5c Mon Sep 17 00:00:00 2001 From: Matthias Seitz Date: Tue, 4 Feb 2025 17:05:05 +0100 Subject: [PATCH] feat: expose blob_store fn on top level pool type (#14205) --- crates/transaction-pool/src/lib.rs | 5 +++++ 1 file changed, 5 insertions(+) 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