Skip to content

Commit 924c520

Browse files
committed
use bank send autocli
1 parent 7c1f93a commit 924c520

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

x/bank/client/cli/tx.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,16 @@ func NewTxCmd(ac address.Codec) *cobra.Command {
2929
}
3030

3131
txCmd.AddCommand(
32-
NewSendTxCmd(ac),
3332
NewMultiSendTxCmd(ac),
3433
)
3534

3635
return txCmd
3736
}
3837

3938
// NewSendTxCmd returns a CLI command handler for creating a MsgSend transaction.
39+
// 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.
4042
func NewSendTxCmd(ac address.Codec) *cobra.Command {
4143
cmd := &cobra.Command{
4244
Use: "send [from_key_or_address] [to_address] [amount]",

0 commit comments

Comments
 (0)