Skip to content

Commit ebd888e

Browse files
committed
fix type in error msg
1 parent d3306c1 commit ebd888e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/types/ccipocr3/plugin_commit_types.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ func DecodeCommitReportInfo(data []byte) (CommitReportInfo, error) {
103103
err := dec.Decode(&result)
104104
return result, err
105105
default:
106-
return CommitReportInfo{}, fmt.Errorf("unknown execute report info version (%d)", data[0])
106+
return CommitReportInfo{}, fmt.Errorf("unknown commit report info version (%d)", data[0])
107107
}
108108
}
109109

0 commit comments

Comments
 (0)