From 897a91e4dcd0c5c26e4eae6b674940e9bb7d025c Mon Sep 17 00:00:00 2001 From: Michal Kucharczyk <1728078+michalkucharczyk@users.noreply.github.com> Date: Thu, 10 Oct 2024 16:46:33 +0200 Subject: [PATCH] prdoc update --- prdoc/pr_4639.prdoc | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/prdoc/pr_4639.prdoc b/prdoc/pr_4639.prdoc index 972f2ccd57e..be4ba008257 100644 --- a/prdoc/pr_4639.prdoc +++ b/prdoc/pr_4639.prdoc @@ -4,8 +4,14 @@ doc: - audience: Node Dev description: | Most important changes introduced by this PR: - - The transaction pool references spread across codebase can now be Unsized allowing to use trait object, - - New command line option was added allowing to select implementation of transaction pool: + - The transaction pool references spread across codebase are now wrapper to a transaction pool trait object, + - The fork-aware pool implementation was added. + - The `sc-transaction-pool` refactored, + - Trasnaction pool builder was introduced to allow to instantiation of either old or new transaction pool. Refer to PR description for + more details on how to enable fork-aware pool in the custom node. + - audience: Node Operator + description: | + - New command line option was added, allowing to select implementation of transaction pool: - `--pool-type=fork-aware` - new fork aware transaction pool, - `--pool-type=single-state` - old transaction pool implementation which is still default, -- GitLab