Fix tiny typo (#4085)

This commit is contained in:
Alessio Treglia 2019-04-10 13:11:02 +01:00 committed by GitHub
parent eb51a6f84b
commit 1bd579dcdb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -1,10 +1,10 @@
package clientpackage package client
import ( import (
"github.com/spf13/cobra" "github.com/spf13/cobra"
"github.com/tendermint/go-amino" "github.com/tendermint/go-amino"
"github.com/cosmos/cosmos-sdk/client" sdkclient "github.com/cosmos/cosmos-sdk/client"
"github.com/cosmos/cosmos-sdk/x/mint" "github.com/cosmos/cosmos-sdk/x/mint"
"github.com/cosmos/cosmos-sdk/x/mint/client/cli" "github.com/cosmos/cosmos-sdk/x/mint/client/cli"
) )
@ -27,7 +27,7 @@ func (mc ModuleClient) GetQueryCmd() *cobra.Command {
} }
mintingQueryCmd.AddCommand( mintingQueryCmd.AddCommand(
client.GetCommands( sdkclient.GetCommands(
cli.GetCmdQueryParams(mc.cdc), cli.GetCmdQueryParams(mc.cdc),
cli.GetCmdQueryInflation(mc.cdc), cli.GetCmdQueryInflation(mc.cdc),
cli.GetCmdQueryAnnualProvisions(mc.cdc), cli.GetCmdQueryAnnualProvisions(mc.cdc),