Skip to content
Merged
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
7 changes: 7 additions & 0 deletions prdoc/pr_8838.prdoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
title: '`fatxpool`: fork aware transaction pool is now default'
doc:
- audience: Node Operator
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.
crates:
- name: sc-cli
bump: major
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think minor is okay here.

2 changes: 1 addition & 1 deletion substrate/client/cli/src/params/transaction_pool_params.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ pub struct TransactionPoolParams {
pub tx_ban_seconds: Option<u64>,

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

Expand Down
Loading