We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5ffb2d commit a6f11c6Copy full SHA for a6f11c6
base/point.go
@@ -36,7 +36,7 @@ func ParseHeightString(s string) (Height, error) {
36
37
i, err := strconv.ParseInt(n, 10, 64)
38
if err != nil {
39
- return NilHeight, errors.Wrap(err, "seHeightString")
+ return NilHeight, errors.Wrap(err, "ParseHeightString")
40
}
41
42
return Height(i), nil
@@ -45,7 +45,7 @@ func ParseHeightString(s string) (Height, error) {
45
func ParseHeightBytes(b []byte) (Height, error) {
46
i, err := util.BigBytesToInt64(b)
47
48
- return NilHeight, errors.Wrap(err, "seHeightBytes")
+ return NilHeight, errors.Wrap(err, "ParseHeightBytes")
49
50
51
0 commit comments