Skip to content

Commit

Permalink
fixed mint and burn message examples to include the to and from addre…
Browse files Browse the repository at this point in the history
…sses (#6002) (#6010)

(cherry picked from commit af41714)

Co-authored-by: Max <[email protected]>
  • Loading branch information
mergify[bot] and maxrobot authored Aug 9, 2023
1 parent 5da2a20 commit 01fa841
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions x/tokenfactory/client/cli/tx.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.",
})
}
Expand Down

0 comments on commit 01fa841

Please sign in to comment.