From 56465ed5cf4f1b568c92a924dcab9efdac28bc72 Mon Sep 17 00:00:00 2001 From: Bartek Date: Wed, 16 Aug 2023 12:40:03 +0200 Subject: [PATCH] fix comment --- src/lib/utils/lib.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/utils/lib.ts b/src/lib/utils/lib.ts index 73d6e6d32f..5d7ebeaed1 100644 --- a/src/lib/utils/lib.ts +++ b/src/lib/utils/lib.ts @@ -137,7 +137,7 @@ export async function getFirstBlockForL1Block({ const l1Block = await getL1Block(mid) // If the midpoint matches the target, we've found a match. - // Adjust the range to search for the first. + // Adjust the range to search for the first occurrence. if (l1Block === forL1Block) { end = mid - 1 } else if (l1Block < forL1Block) {