From 5443b99ddefe8967755a15043e899da276ac8d8d Mon Sep 17 00:00:00 2001 From: Viacheslav Gonkivskyi Date: Wed, 30 Aug 2023 16:13:23 +0300 Subject: [PATCH] fix lint --- cmd/celestia/blob.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/celestia/blob.go b/cmd/celestia/blob.go index 8ab130c24d..0d09268257 100644 --- a/cmd/celestia/blob.go +++ b/cmd/celestia/blob.go @@ -118,7 +118,7 @@ var submitCmd = &cobra.Command{ return fmt.Errorf("error creating a blob:%v", err) } - height, err := client.Blob.Submit(cmd.Context(), []*blob.Blob{parsedBlob}) + height, err := client.Blob.Submit(cmd.Context(), []*blob.Blob{parsedBlob}, nil) response := struct { Height uint64 `json:"height"`