Skip to content

Commit 839f548

Browse files
committed
minor change
1 parent c0c492e commit 839f548

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/committer/reorg.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ func getReorgRange() (int64, int64, error) {
5757
endBlock = min(endBlock-5, startBlock+100) // lag by some blocks for safety
5858

5959
if startBlock >= endBlock {
60-
return 0, 0, fmt.Errorf("start block is greater than end block")
60+
return 0, 0, fmt.Errorf("start block is greater than end block (%d >= %d)", startBlock, endBlock)
6161
}
6262

6363
return startBlock, endBlock, nil

0 commit comments

Comments
 (0)