Skip to content

Commit

Permalink
fix: set production values for some constants again
Browse files Browse the repository at this point in the history
  • Loading branch information
kilted-andres committed Aug 6, 2024
1 parent 1379038 commit 3a66578
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/utilities/indexer/queryFromIndexer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { writeQuery } from './writeQuery';
const { indexer } = configuration;

const QUERY_INTERVAL_MS = 1000;
export const QUERY_SIZE = 10;
export const QUERY_SIZE = 50;

/** Example Query. */
const queryBlocks = `
Expand Down
3 changes: 1 addition & 2 deletions src/utilities/indexer/watchIndexer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@ import { updateAttestationsCount } from './updateAttestationCount';

const { isTest } = configuration;

// const SCAN_INTERVAL_MS = 10 * 60 * 1000;
const SCAN_INTERVAL_MS = 1 * 1000;
const SCAN_INTERVAL_MS = 10 * 60 * 1000;

export function watchIndexer() {
if (isTest) {
Expand Down

0 comments on commit 3a66578

Please sign in to comment.