From 24271d7be39e30aa523996c151b933b51027e71e Mon Sep 17 00:00:00 2001 From: levisyin <150114626+levisyin@users.noreply.github.com> Date: Fri, 15 Dec 2023 14:49:25 +0800 Subject: [PATCH] fix: remove duplicate `query gamm pool` subcommand (#7120) --- x/gamm/client/cli/query.go | 1 - 1 file changed, 1 deletion(-) diff --git a/x/gamm/client/cli/query.go b/x/gamm/client/cli/query.go index d939c045764..2f08f3a7258 100644 --- a/x/gamm/client/cli/query.go +++ b/x/gamm/client/cli/query.go @@ -23,7 +23,6 @@ import ( // GetQueryCmd returns the cli query commands for this module. func GetQueryCmd() *cobra.Command { cmd := osmocli.QueryIndexCmd(types.ModuleName) - osmocli.AddQueryCmd(cmd, types.NewQueryClient, GetCmdPool) osmocli.AddQueryCmd(cmd, types.NewQueryClient, GetCmdSpotPrice) osmocli.AddQueryCmd(cmd, types.NewQueryClient, GetCmdPool) osmocli.AddQueryCmd(cmd, types.NewQueryClient, GetCmdPools)