Skip to content

Commit

Permalink
fix(tx-pool) make BestTransactionsAttributes public (#4870)
Browse files Browse the repository at this point in the history
  • Loading branch information
AtomicAzzaz authored Oct 1, 2023
1 parent fd697d9 commit 858ea41
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions crates/transaction-pool/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,6 @@ use std::{
};
use tokio::sync::mpsc::Receiver;
use tracing::{instrument, trace};
use traits::BestTransactionsAttributes;

pub use crate::{
blobstore::{BlobStore, BlobStoreError},
Expand All @@ -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,
Expand Down

0 comments on commit 858ea41

Please sign in to comment.