We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0c492e commit 839f548Copy full SHA for 839f548
internal/committer/reorg.go
@@ -57,7 +57,7 @@ func getReorgRange() (int64, int64, error) {
57
endBlock = min(endBlock-5, startBlock+100) // lag by some blocks for safety
58
59
if startBlock >= endBlock {
60
- return 0, 0, fmt.Errorf("start block is greater than end block")
+ return 0, 0, fmt.Errorf("start block is greater than end block (%d >= %d)", startBlock, endBlock)
61
}
62
63
return startBlock, endBlock, nil
0 commit comments