waiting for 100ms to create a batch

This commit is contained in:
Godmode Galactus 2023-03-19 15:31:06 +01:00
parent b8df5f24dd
commit c2fab13d03
No known key found for this signature in database
GPG Key ID: A04142C71ABB0DEA
1 changed files with 1 additions and 3 deletions

View File

@ -24,10 +24,8 @@ pub const DEFAULT_TX_BATCH_SIZE: usize = 512;
#[from_env]
pub const DEFAULT_FANOUT_SIZE: u64 = 32;
#[from_env]
pub const DEFAULT_TX_BATCH_INTERVAL_MS: u64 = 1;
pub const DEFAULT_TX_BATCH_INTERVAL_MS: u64 = 100;
#[from_env]
pub const DEFAULT_CLEAN_INTERVAL_MS: u64 = 5 * 60 * 1000; // five minute
#[from_env]
pub const DEFAULT_TX_SENT_TTL_S: u64 = 12;
pub const DEFAULT_TRANSACTION_CONFIRMATION_STATUS: TransactionConfirmationStatus =
TransactionConfirmationStatus::Finalized;