From 4c3b2c8fcbc18bce296a0b567ca5f73a0f9c34af Mon Sep 17 00:00:00 2001 From: AurelienFT Date: Wed, 23 Oct 2024 16:06:19 +0200 Subject: [PATCH] Update the flag for txpool chain count. --- bin/fuel-core/src/cli/run/tx_pool.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/fuel-core/src/cli/run/tx_pool.rs b/bin/fuel-core/src/cli/run/tx_pool.rs index 34f33df44c1..a7addf83bef 100644 --- a/bin/fuel-core/src/cli/run/tx_pool.rs +++ b/bin/fuel-core/src/cli/run/tx_pool.rs @@ -32,7 +32,7 @@ pub struct TxPoolArgs { pub tx_max_total_bytes: usize, /// The max number of tx in a chain of dependent transactions that supported by the `TxPool`. - #[clap(long = "tx-max-depth", default_value = "32", env)] + #[clap(long = "tx-max-chain-count", default_value = "32", env)] pub tx_max_chain_count: usize, /// The maximum number of active subscriptions that supported by the `TxPool`.