Skip to content

Commit be3c280

Browse files
authored
fix(blob): use proper share.MaxShareVersion const (#64)
We were comparing against incorrect const (`math.MaxUint8`) but error message refers to the proper (`share.MaxShareVersion`). Sadly we cannot import `shares` package in `blob` due to cyclic dependency, adding comment for the future. Also, removed useless `fmt` alias for `fmt` package.
1 parent c6540fc commit be3c280

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

blob/blob.go

+5-3
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@ package blob
55
import (
66
"bytes"
77
"errors"
8-
fmt "fmt"
9-
math "math"
8+
"fmt"
109
"sort"
1110

1211
"github.com/celestiaorg/go-square/namespace"
@@ -24,6 +23,9 @@ const ProtoBlobTxTypeID = "BLOB"
2423
// decoding binaries that are not actually IndexWrappers.
2524
const ProtoIndexWrapperTypeID = "INDX"
2625

26+
// MaxShareVersion is the maximum value a share version can be. See: [shares.MaxShareVersion].
27+
const MaxShareVersion = 127
28+
2729
// New creates a new coretypes.Blob from the provided data after performing
2830
// basic stateless checks over it.
2931
func New(ns namespace.Namespace, blob []byte, shareVersion uint8) *Blob {
@@ -51,7 +53,7 @@ func (b *Blob) Validate() error {
5153
if len(b.NamespaceId) != namespace.NamespaceIDSize {
5254
return fmt.Errorf("namespace id must be %d bytes", namespace.NamespaceIDSize)
5355
}
54-
if b.ShareVersion > math.MaxUint8 {
56+
if b.ShareVersion > MaxShareVersion {
5557
return errors.New("share version can not be greater than MaxShareVersion")
5658
}
5759
if b.NamespaceVersion > namespace.NamespaceVersionMax {

0 commit comments

Comments
 (0)