Skip to content

Commit 15a0c8b

Browse files
paritytech-release-backport-bot[bot]michalkucharczykgithub-actions[bot]EgorPopelyaev
authored
[stable2506] Backport #8838 (#9439)
Backport #8838 into `stable2506` from michalkucharczyk. See the [documentation](https://github.com/paritytech/polkadot-sdk/blob/master/docs/BACKPORT.md) on how to use this bot. <!-- # To be used by other automation, do not modify: original-pr-number: #${pull_number} --> --------- Co-authored-by: Michal Kucharczyk <[email protected]> Co-authored-by: cmd[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Egor_P <[email protected]>
1 parent 0d40573 commit 15a0c8b

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

prdoc/pr_8838.prdoc

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
title: '`fatxpool`: fork aware transaction pool is now default'
2+
doc:
3+
- audience: Node Operator
4+
description: This PR changes the default transaction pool to the fork aware implementation. The old implementation can be still used with `--pool-type=single-state` command line argument.
5+
crates:
6+
- name: sc-cli
7+
bump: minor

substrate/client/cli/src/params/transaction_pool_params.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ pub struct TransactionPoolParams {
5757
pub tx_ban_seconds: Option<u64>,
5858

5959
/// The type of transaction pool to be instantiated.
60-
#[arg(long, value_enum, default_value_t = TransactionPoolType::SingleState)]
60+
#[arg(long, value_enum, default_value_t = TransactionPoolType::ForkAware)]
6161
pub pool_type: TransactionPoolType,
6262
}
6363

0 commit comments

Comments
 (0)