We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c1f93a commit 924c520Copy full SHA for 924c520
x/bank/client/cli/tx.go
@@ -29,14 +29,16 @@ func NewTxCmd(ac address.Codec) *cobra.Command {
29
}
30
31
txCmd.AddCommand(
32
- NewSendTxCmd(ac),
33
NewMultiSendTxCmd(ac),
34
)
35
36
return txCmd
37
38
39
// NewSendTxCmd returns a CLI command handler for creating a MsgSend transaction.
+// Deprecated: The module uses the AutoCLI generated command with a better UX.
40
+// This command should be removed in the future, but this requires reworking the
41
+// bank send helper: the solution is here: https://github.com/cosmos/cosmos-sdk/pull/17868.
42
func NewSendTxCmd(ac address.Codec) *cobra.Command {
43
cmd := &cobra.Command{
44
Use: "send [from_key_or_address] [to_address] [amount]",
0 commit comments