Skip to content

Commit

Permalink
Minor change
Browse files Browse the repository at this point in the history
  • Loading branch information
vusirikala committed Jul 18, 2024
1 parent 1e4834e commit e4b1c07
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion config/src/config/quorum_store_config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ pub struct QuorumStoreConfig {
pub channel_size: usize,
pub proof_timeout_ms: usize,
pub batch_generation_poll_interval_ms: usize,
// No longer being used
pub batch_generation_min_non_empty_interval_ms: usize,
pub batch_generation_max_interval_ms: usize,
/// The maximum number of transactions that the batch generator puts in a batch.
Expand Down Expand Up @@ -102,7 +103,7 @@ impl Default for QuorumStoreConfig {
channel_size: 1000,
proof_timeout_ms: 10000,
batch_generation_poll_interval_ms: 25,
batch_generation_min_non_empty_interval_ms: 50,
batch_generation_min_non_empty_interval_ms: 200,
batch_generation_max_interval_ms: 250,
sender_max_batch_txns: 250,
// TODO: on next release, remove BATCH_PADDING_BYTES
Expand Down

0 comments on commit e4b1c07

Please sign in to comment.