Skip to content

Commit

Permalink
chore: extend NewBlob with share version param
Browse files Browse the repository at this point in the history
  • Loading branch information
vgonkivs committed Apr 11, 2023
1 parent 6ca3f6e commit 1fbf4d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion blob/blob.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ type Blob struct {
}

// NewBlob constructs a new blob from the provided namespace.ID and data.
func NewBlob(nID namespace.ID, data []byte) (*Blob, error) {
func NewBlob(_ uint8, nID namespace.ID, data []byte) (*Blob, error) {
blob, err := types.NewBlob(nID, data)
if err != nil {
return nil, err
Expand Down

0 comments on commit 1fbf4d2

Please sign in to comment.