Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
aditiharini committed Sep 14, 2024
1 parent 9b94237 commit c8d380b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/hubble/src/eth/l2EventsProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -704,7 +704,7 @@ export class L2EventsProvider<chain extends Chain = Chain, transport extends Tra
const eventSpecificArgs = this.getEventSpecificArgs(fid);

// The batch sizes are artificially large-- this batch size is internally enforced and we essentially want to eliminate batches given that we don't expct a lot of results from these queries.
this.syncHistoricalEvents(0, this._lastBlockNumber, this._lastBlockNumber, eventSpecificArgs);
this.syncHistoricalEvents(this._firstBlock, this._lastBlockNumber, this._chunkSize, eventSpecificArgs);

log.info({ fid }, `Finished retryEventsForFid ${fid}`);
statsd().increment("l2events.retriesByFid.successes", 1, { fid: fid.toString() });
Expand Down

0 comments on commit c8d380b

Please sign in to comment.