Skip to content

Commit

Permalink
Merge pull request #2 from rpcpool/logging-frequency
Browse files Browse the repository at this point in the history
reducing logging frequency
  • Loading branch information
linuskendall authored Oct 28, 2024
2 parents dd7b81f + 142c11e commit 801beca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ingester/indexer/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ use crate::{
};

use super::typedefs::block_info::BlockInfo;
const POST_BACKFILL_FREQUENCY: u64 = 10;
const PRE_BACKFILL_FREQUENCY: u64 = 10;
const POST_BACKFILL_FREQUENCY: u64 = 10000;
const PRE_BACKFILL_FREQUENCY: u64 = 10000;

#[derive(FromQueryResult)]
pub struct OptionalContextModel {
Expand Down

0 comments on commit 801beca

Please sign in to comment.