From 164f942d4e3cf606ae260eb5c2acd742308017fc Mon Sep 17 00:00:00 2001 From: Max Date: Wed, 9 Aug 2023 23:10:05 +0100 Subject: [PATCH] fixed mint and burn message examples to include the to and from addresses (#6002) (cherry picked from commit af41714042aa618c777319ab385f35bdccab74b0) --- x/tokenfactory/client/cli/tx.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/x/tokenfactory/client/cli/tx.go b/x/tokenfactory/client/cli/tx.go index 994af760e8d..8569cfc0ad9 100644 --- a/x/tokenfactory/client/cli/tx.go +++ b/x/tokenfactory/client/cli/tx.go @@ -32,14 +32,14 @@ func NewCreateDenomCmd() *cobra.Command { func NewMintCmd() *cobra.Command { return osmocli.BuildTxCli[*types.MsgMint](&osmocli.TxCliDesc{ - Use: "mint [amount] [flags]", + Use: "mint [amount] [mint-to-address] [flags]", Short: "Mint a denom to an address. Must have admin authority to do so.", }) } func NewBurnCmd() *cobra.Command { return osmocli.BuildTxCli[*types.MsgBurn](&osmocli.TxCliDesc{ - Use: "burn [amount] [flags]", + Use: "burn [amount] [burn-from-address] [flags]", Short: "Burn tokens from an address. Must have admin authority to do so.", }) }