From c840261cb0399cbe6c61085dcb3bb09078b8e4c8 Mon Sep 17 00:00:00 2001 From: Cory Date: Wed, 6 Jan 2021 22:16:20 -0800 Subject: [PATCH] Revert "Fix upgrade tx commands not showing up in CLI" (#8262) * Revert "Fix upgrade tx commands not showing up in CLI (#8261)" This reverts commit 893f2262a7ccc8584be4968f0416f52f0c239927. * Update x/upgrade/client/cli/tx.go Co-authored-by: Alessio Treglia --- x/upgrade/client/cli/tx.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/x/upgrade/client/cli/tx.go b/x/upgrade/client/cli/tx.go index b6930d1c9f..32472ad84d 100644 --- a/x/upgrade/client/cli/tx.go +++ b/x/upgrade/client/cli/tx.go @@ -30,11 +30,6 @@ func GetTxCmd() *cobra.Command { Short: "Upgrade transaction subcommands", } - cmd.AddCommand( - NewCmdSubmitUpgradeProposal(), - NewCmdSubmitCancelUpgradeProposal(), - ) - return cmd }