From f303b5cb17d3b171276d1119fe1407e029426a31 Mon Sep 17 00:00:00 2001 From: Alexey Shekhirin Date: Mon, 28 Aug 2023 18:08:59 +0100 Subject: [PATCH] feat(primitives): increase transaction senders pruning batch size (#4383) --- crates/primitives/src/prune/batch_sizes.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/primitives/src/prune/batch_sizes.rs b/crates/primitives/src/prune/batch_sizes.rs index 9498ea627b4b..f689ee1da816 100644 --- a/crates/primitives/src/prune/batch_sizes.rs +++ b/crates/primitives/src/prune/batch_sizes.rs @@ -57,7 +57,7 @@ impl PruneBatchSizes { Self { receipts: 250, transaction_lookup: 250, - transaction_senders: 250, + transaction_senders: 1000, account_history: 1000, storage_history: 1000, } @@ -69,7 +69,7 @@ impl PruneBatchSizes { Self { receipts: 100, transaction_lookup: 100, - transaction_senders: 100, + transaction_senders: 500, account_history: 500, storage_history: 500, }