Skip to content

Commit

Permalink
feat(primitives): increase transaction senders pruning batch size (#4383
Browse files Browse the repository at this point in the history
)
  • Loading branch information
shekhirin committed Aug 28, 2023
1 parent e527531 commit f303b5c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/primitives/src/prune/batch_sizes.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ impl PruneBatchSizes {
Self {
receipts: 250,
transaction_lookup: 250,
transaction_senders: 250,
transaction_senders: 1000,
account_history: 1000,
storage_history: 1000,
}
Expand All @@ -69,7 +69,7 @@ impl PruneBatchSizes {
Self {
receipts: 100,
transaction_lookup: 100,
transaction_senders: 100,
transaction_senders: 500,
account_history: 500,
storage_history: 500,
}
Expand Down

0 comments on commit f303b5c

Please sign in to comment.