Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change description flag depth in TxPool #2387

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

### Changed
- [2387](https://github.com/FuelLabs/fuel-core/pull/2387): Update description `tx-max-depth` flag.

## [Version 0.41.3]

### Fixed
Expand Down
1 change: 1 addition & 0 deletions bin/fuel-core/src/cli/run/tx_pool.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ pub struct TxPoolArgs {
#[clap(long = "tx-max-total-bytes", default_value = "131072000", env)]
pub tx_max_total_bytes: usize,

/// The flag name is `tx-max-depth` for backward compatibility but the behavior is:
/// 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)]
pub tx_max_chain_count: usize,
Expand Down
Loading