Skip to content

Commit

Permalink
fix: use maximum query size from the indexer
Browse files Browse the repository at this point in the history
  • Loading branch information
kilted-andres committed Aug 14, 2024
1 parent 72023c8 commit 415cf9d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/utilities/indexer/queryFromIndexer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import { sleep } from '../sleep';

const { indexer } = configuration;

const QUERY_INTERVAL_MS = 1000;
export const QUERY_SIZE = 50;
const QUERY_INTERVAL_MS = 2000;
export const QUERY_SIZE = 100;

// /** Example Query. */
// const queryBlocks = `
Expand Down

0 comments on commit 415cf9d

Please sign in to comment.