From bb1c1fc4d9cb031b5d04ddc3cb900cd7c2a4f925 Mon Sep 17 00:00:00 2001 From: Viacheslav Gonkivskyi Date: Mon, 25 Sep 2023 14:50:13 +0300 Subject: [PATCH] fix lint --- nodebuilder/blob/cmd/blob.go | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/nodebuilder/blob/cmd/blob.go b/nodebuilder/blob/cmd/blob.go index bc54b8a875..ceebf6bb2b 100644 --- a/nodebuilder/blob/cmd/blob.go +++ b/nodebuilder/blob/cmd/blob.go @@ -55,11 +55,13 @@ func init() { "celestia blob submit [namespace] [blobData] [flags]\n\n " + "Flags:\n" + " --fee int specifies fee(in TIA) for blob submission(optional)\n" + - " --gas.limit uint64 sets the maximum amount of that gas is allowed to consume during blob submission(optional)\n" + + " --gas.limit uint64 sets the maximum amount of that gas is allowed " + + "to consume during blob submission(optional)\n" + " -h, --help help for submit\n" + "NOTE: fee and gas.limit params will be calculated automatically if they are not provided as arguments.\n\n" + "Global Flags:\n" + - " --token string Authorization token (if not provided, the CELESTIA_NODE_AUTH_TOKEN environment variable will be used)\n" + + " --token string Authorization token (if not provided, " + + "the CELESTIA_NODE_AUTH_TOKEN environment variable will be used)\n" + " --url string Request URL (default \"http://localhost:26658\")", ) }