mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
fix(txpool): pendind pool reordering (#3955)
This commit is contained in:
@ -10,7 +10,7 @@
|
||||
use reth_network::{config::rng_secret_key, NetworkConfig, NetworkManager};
|
||||
use reth_provider::test_utils::NoopProvider;
|
||||
use reth_transaction_pool::{
|
||||
GasCostOrdering, PoolTransaction, PooledTransaction, TransactionOrigin, TransactionPool,
|
||||
CoinbaseTipOrdering, PoolTransaction, PooledTransaction, TransactionOrigin, TransactionPool,
|
||||
TransactionValidationOutcome, TransactionValidator,
|
||||
};
|
||||
|
||||
@ -24,7 +24,7 @@ async fn main() -> eyre::Result<()> {
|
||||
|
||||
let pool = reth_transaction_pool::Pool::new(
|
||||
OkValidator::default(),
|
||||
GasCostOrdering::default(),
|
||||
CoinbaseTipOrdering::default(),
|
||||
Default::default(),
|
||||
);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user