Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
brtkx committed Aug 14, 2023
1 parent febc53c commit f0c70da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/utils/lib.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ export const getBlockRangesForL1Block = async ({
let start = startArbBlock
let end = endArbBlock

while (start < end) {
while (start <= end) {
// Calculate the midpoint of the current range.
const mid = start + Math.floor((end - start) / 2)

Expand Down

0 comments on commit f0c70da

Please sign in to comment.