From 1e737f6d3277283237f2047109ffe1c26bdfca63 Mon Sep 17 00:00:00 2001 From: Deividas Petraitis Date: Mon, 13 May 2024 11:55:20 +0300 Subject: [PATCH] Update docs for TokenFactory CLI --help (#8248) * Update docs * requested changes (cherry picked from commit 98d9b60e90650da2f9eebd79d5cb4e170f0eccc4) --- x/tokenfactory/client/cli/tx.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x/tokenfactory/client/cli/tx.go b/x/tokenfactory/client/cli/tx.go index 65b39e0b985..a8ecc7e7311 100644 --- a/x/tokenfactory/client/cli/tx.go +++ b/x/tokenfactory/client/cli/tx.go @@ -29,7 +29,7 @@ func GetTxCmd() *cobra.Command { func NewCreateDenomCmd() *cobra.Command { return osmocli.BuildTxCli[*types.MsgCreateDenom](&osmocli.TxCliDesc{ Use: "create-denom", - Short: "create a new denom from an account. (Costs osmo though!)", + Short: "create a new denom from an account. (osmo to create tokens is charged through gas consumption)", }) }