From dca5cc236c778c4e919727c5baead1b0b0f99675 Mon Sep 17 00:00:00 2001 From: Viacheslav Gonkivskyi Date: Tue, 26 Sep 2023 13:01:48 +0300 Subject: [PATCH] add changes suggested by @adlerjohn --- nodebuilder/blob/cmd/blob.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/nodebuilder/blob/cmd/blob.go b/nodebuilder/blob/cmd/blob.go index fa434a4646..f3510edfe1 100644 --- a/nodebuilder/blob/cmd/blob.go +++ b/nodebuilder/blob/cmd/blob.go @@ -41,14 +41,15 @@ func init() { &fee, "fee", -1, - "specifies fee (in TIA) for blob submission [optional]", + "specifies fee (in utia) for blob submission.\n"+ + "Fee will be automatically calculated if negative value is passed [optional]", ) submitCmd.PersistentFlags().Uint64Var( &gasLimit, "gas.limit", 0, - "sets the maximum amount of gas that is allowed to consume during blob submission [optional]", + "sets the amount of gas that is consumed during blob submission [optional]", ) // unset the default value to avoid users confusion