Skip to content

Commit

Permalink
fix: increase gas limit
Browse files Browse the repository at this point in the history
  • Loading branch information
doomsower committed Dec 5, 2024
1 parent d64d0a8 commit 05650a8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/services/scanner/Scanner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ export class Scanner {
],
blockNumber,
allowFailure: false,
gas: 550_000_000n,
gas: 1_000_000_000n,
});
const result = resp.pop() as readonly CreditAccountDataRaw[];
const duration = Math.round((new Date().getTime() - start) / 1000);
Expand Down Expand Up @@ -352,7 +352,7 @@ export class Scanner {
],
blockNumber,
allowFailure: false,
gas: 550_000_000n,
gas: 1_000_000_000n,
});
const result = resp.pop() as readonly CreditAccountDataRaw[];
return [...result];
Expand Down

0 comments on commit 05650a8

Please sign in to comment.