From 858ea41da1f8852e93e0604dbb2f7a89a5398b28 Mon Sep 17 00:00:00 2001 From: AtomicAzzaz <75758585+AtomicAzzaz@users.noreply.github.com> Date: Sun, 1 Oct 2023 22:01:49 +0200 Subject: [PATCH] fix(tx-pool) make BestTransactionsAttributes public (#4870) --- crates/transaction-pool/src/lib.rs | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/crates/transaction-pool/src/lib.rs b/crates/transaction-pool/src/lib.rs index c2bab47832..542e6fc833 100644 --- a/crates/transaction-pool/src/lib.rs +++ b/crates/transaction-pool/src/lib.rs @@ -154,7 +154,6 @@ use std::{ }; use tokio::sync::mpsc::Receiver; use tracing::{instrument, trace}; -use traits::BestTransactionsAttributes; pub use crate::{ blobstore::{BlobStore, BlobStoreError}, @@ -170,11 +169,11 @@ pub use crate::{ TransactionEvents, }, traits::{ - AllPoolTransactions, BestTransactions, BlockInfo, CanonicalStateUpdate, ChangedAccount, - EthBlobTransactionSidecar, EthPoolTransaction, EthPooledTransaction, - GetPooledTransactionLimit, NewBlobSidecar, NewTransactionEvent, PoolSize, PoolTransaction, - PropagateKind, PropagatedTransactions, TransactionListenerKind, TransactionOrigin, - TransactionPool, TransactionPoolExt, + AllPoolTransactions, BestTransactions, BestTransactionsAttributes, BlockInfo, + CanonicalStateUpdate, ChangedAccount, EthBlobTransactionSidecar, EthPoolTransaction, + EthPooledTransaction, GetPooledTransactionLimit, NewBlobSidecar, NewTransactionEvent, + PoolSize, PoolTransaction, PropagateKind, PropagatedTransactions, TransactionListenerKind, + TransactionOrigin, TransactionPool, TransactionPoolExt, }, validate::{ EthTransactionValidator, TransactionValidationOutcome, TransactionValidationTaskExecutor,