Skip to content

Commit

Permalink
fixed limit
Browse files Browse the repository at this point in the history
  • Loading branch information
Alann27 committed Nov 20, 2024
1 parent 139ac5d commit 8c7519a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mappings/poktroll/reports.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ export async function handleAddBlockReports(block: CosmosBlock): Promise<void> {

async function getRelaysData(block: CosmosBlock){
const relays: Array<EventClaimSettled> = [];
const limit = 1000;
const limit = 100;
let offset = 0;

// eslint-disable-next-line no-constant-condition
Expand Down Expand Up @@ -161,7 +161,7 @@ async function getRelaysData(block: CosmosBlock){

async function getTransactionsData(block: CosmosBlock){
const transactions: Array<Transaction> = [];
const limit = 1000;
const limit = 100;
let offset = 0;

// eslint-disable-next-line no-constant-condition
Expand Down

0 comments on commit 8c7519a

Please sign in to comment.