Skip to content

Commit

Permalink
Increase default ingestion rate to 30s
Browse files Browse the repository at this point in the history
  • Loading branch information
Jurshsmith committed Feb 10, 2024
1 parent b8e462b commit 2bbd23c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions chaindexing/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ impl<SharedState: Sync + Send + Clone> Config<SharedState> {
chains: HashMap::new(),
contracts: vec![],
min_confirmation_count: MinConfirmationCount::new(40),
blocks_per_batch: 10000,
handler_rate_ms: 4000,
ingestion_rate_ms: 4000,
blocks_per_batch: 10_000,
handler_rate_ms: 4_000,
ingestion_rate_ms: 30_000,
reset_count: 0,
shared_state: None,
}
Expand Down

0 comments on commit 2bbd23c

Please sign in to comment.