From 37dbe9fbe80d60262ed068fe4e913138736f59d7 Mon Sep 17 00:00:00 2001 From: Aaron Craelius Date: Wed, 19 Oct 2022 12:40:29 -0400 Subject: [PATCH] feat(app)!: use built-in cobra completion (#1546) Co-authored-by: ryanchristo <12519942+ryanchristo@users.noreply.github.com> --- CHANGELOG.md | 1 + app/client/cli/root.go | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5b5cb1f54c..865caa2883 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -31,6 +31,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - [#1258](https://github.com/regen-network/regen-ledger/pull/1258) Remove group module from experimental config - [#1350](https://github.com/regen-network/regen-ledger/pull/1350) Remove experimental app configuration - [#1357](https://github.com/regen-network/regen-ledger/pull/1357) Remove unused RegenApp functions for setting custom keepers +- [#1546](https://github.com/regen-network/regen-ledger/pull/1546) Remove tendermint completion command ### types diff --git a/app/client/cli/root.go b/app/client/cli/root.go index ed34fff6b5..ffebf8acba 100644 --- a/app/client/cli/root.go +++ b/app/client/cli/root.go @@ -163,7 +163,6 @@ func initRootCmd(rootCmd *cobra.Command, encodingConfig app.EncodingConfig) { genutilcli.GenTxCmd(app.ModuleBasics, encodingConfig.TxConfig, banktypes.GenesisBalancesIterator{}, app.DefaultNodeHome), genutilcli.ValidateGenesisCmd(app.ModuleBasics), AddGenesisAccountCmd(app.DefaultNodeHome), - tmcli.NewCompletionCmd(rootCmd, true), NewTestnetCmd(app.ModuleBasics, banktypes.GenesisBalancesIterator{}), debug.Cmd(), config.Cmd(),