From 22e874a4d9983c2d1cad37005dbdef5bf3a0452c Mon Sep 17 00:00:00 2001 From: Alexander Bezobchuk Date: Fri, 21 Aug 2020 09:17:49 -0400 Subject: [PATCH] update text (#7130) --- x/bank/client/cli/tx.go | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/x/bank/client/cli/tx.go b/x/bank/client/cli/tx.go index 6fb1cf537..64ea2ea21 100644 --- a/x/bank/client/cli/tx.go +++ b/x/bank/client/cli/tx.go @@ -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])