Skip to content

Commit 0a6d20b

Browse files
authored
feat(node): tx pool args defaults (#20136)
1 parent 4c17de8 commit 0a6d20b

File tree

3 files changed

+328
-58
lines changed

3 files changed

+328
-58
lines changed

crates/node/core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ alloy-eips.workspace = true
4747

4848
# misc
4949
eyre.workspace = true
50-
clap = { workspace = true, features = ["derive", "env"] }
50+
clap = { workspace = true, features = ["derive", "env", "string"] }
5151
humantime.workspace = true
5252
rand.workspace = true
5353
derive_more.workspace = true

crates/node/core/src/args/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ pub use gas_price_oracle::GasPriceOracleArgs;
4646

4747
/// TxPoolArgs for configuring the transaction pool
4848
mod txpool;
49-
pub use txpool::TxPoolArgs;
49+
pub use txpool::{DefaultTxPoolValues, TxPoolArgs};
5050

5151
/// DevArgs for configuring the dev testnet
5252
mod dev;

0 commit comments

Comments
 (0)