This reverts commit 053b38cca2
.
This commit is contained in:
parent
053b38cca2
commit
7144ace6b3
|
@ -65,15 +65,12 @@ func (AppModuleBasic) GetQueryCmd(cdc *codec.Codec) *cobra.Command {
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetTxCmd returns the transaction commands for this module
|
// GetTxCmd returns the transaction commands for this module
|
||||||
func (AppModuleBasic) GetTxCmd(ctx context.CLIContext) *cobra.Command {
|
func (AppModuleBasic) GetTxCmd(_ context.CLIContext) *cobra.Command {
|
||||||
txCmd := &cobra.Command{
|
txCmd := &cobra.Command{
|
||||||
Use: "upgrade",
|
Use: "upgrade",
|
||||||
Short: "Upgrade transaction subcommands",
|
Short: "Upgrade transaction subcommands",
|
||||||
}
|
}
|
||||||
txCmd.AddCommand(flags.PostCommands(
|
txCmd.AddCommand(flags.PostCommands()...)
|
||||||
cli.NewCmdSubmitUpgradeProposal(ctx),
|
|
||||||
cli.NewCmdSubmitCancelUpgradeProposal(ctx),
|
|
||||||
)...)
|
|
||||||
return txCmd
|
return txCmd
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue