Skip to content

Commit

Permalink
update text (#7130)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexanderbez authored Aug 21, 2020
1 parent 0234ad3 commit 22e874a
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions x/bank/client/cli/tx.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,10 @@ func NewTxCmd() *cobra.Command {
// NewSendTxCmd returns a CLI command handler for creating a MsgSend transaction.
func NewSendTxCmd() *cobra.Command {
cmd := &cobra.Command{
Use: "send [from_key_or_address] [to_address] [amount]",
Short: "Create and/or sign and broadcast a MsgSend transaction",
Args: cobra.ExactArgs(3),
Use: "send [from_key_or_address] [to_address] [amount]",
Short: `Send funds from one account to another. Note, the'--from' flag is
ignored as it is implied from [from_key_or_address].`,
Args: cobra.ExactArgs(3),
RunE: func(cmd *cobra.Command, args []string) error {
cmd.Flags().Set(flags.FlagFrom, args[0])

Expand Down

0 comments on commit 22e874a

Please sign in to comment.