Skip to content

Commit

Permalink
update log
Browse files Browse the repository at this point in the history
  • Loading branch information
zhangchiqing committed May 10, 2024
1 parent bceb2a5 commit fbb53a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/util/cmd/find-inconsistent-result/cmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -157,9 +157,9 @@ func (c *checker) CompareAtHeight(height uint64) (bool, error) {

match := ownResultID == sealedResultID
if match {
fmt.Printf("height %v match: result %v\n", height, ownResultID)
fmt.Printf("block %v (id: %v) match: result %v\n", height, blockID, ownResultID)
} else {
fmt.Printf("height %v mismatch: own %v, sealed %v\n", height, ownResultID, sealedResultID)
fmt.Printf("block %v (id: %v) mismatch: own %v, sealed %v\n", height, blockID, ownResultID, sealedResultID)
}

return match, nil
Expand Down

0 comments on commit fbb53a5

Please sign in to comment.