update text (#7130)
This commit is contained in:
parent
0234ad324e
commit
22e874a4d9
|
@ -28,9 +28,10 @@ func NewTxCmd() *cobra.Command {
|
||||||
// NewSendTxCmd returns a CLI command handler for creating a MsgSend transaction.
|
// NewSendTxCmd returns a CLI command handler for creating a MsgSend transaction.
|
||||||
func NewSendTxCmd() *cobra.Command {
|
func NewSendTxCmd() *cobra.Command {
|
||||||
cmd := &cobra.Command{
|
cmd := &cobra.Command{
|
||||||
Use: "send [from_key_or_address] [to_address] [amount]",
|
Use: "send [from_key_or_address] [to_address] [amount]",
|
||||||
Short: "Create and/or sign and broadcast a MsgSend transaction",
|
Short: `Send funds from one account to another. Note, the'--from' flag is
|
||||||
Args: cobra.ExactArgs(3),
|
ignored as it is implied from [from_key_or_address].`,
|
||||||
|
Args: cobra.ExactArgs(3),
|
||||||
RunE: func(cmd *cobra.Command, args []string) error {
|
RunE: func(cmd *cobra.Command, args []string) error {
|
||||||
cmd.Flags().Set(flags.FlagFrom, args[0])
|
cmd.Flags().Set(flags.FlagFrom, args[0])
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue