Skip to content

Commit

Permalink
renamed state subcommand to tendermint
Browse files Browse the repository at this point in the history
  • Loading branch information
UnitylChaos committed Jun 1, 2018
1 parent 744f785 commit aa41cef
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions cmd/gaia/cmd/gaiacli/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,15 +39,15 @@ func main() {
rpc.AddCommands(rootCmd)

//Add state commands
stateCmd := &cobra.Command{
Use: "state",
Short: "State querying subcommands (validators, blocks, transactions)",
tendermintCmd := &cobra.Command{
Use: "tendermint",
Short: "Tendermint state querying subcommands",
}
stateCmd.AddCommand(
tendermintCmd.AddCommand(
rpc.BlockCommand(),
rpc.ValidatorCommand(),
)
tx.AddCommands(stateCmd, cdc)
tx.AddCommands(tendermintCmd, cdc)

//Add IBC commands
ibcCmd := &cobra.Command{
Expand All @@ -66,7 +66,7 @@ func main() {
}

advancedCmd.AddCommand(
stateCmd,
tendermintCmd,
ibcCmd,
lcd.ServeCommand(cdc),
)
Expand Down

0 comments on commit aa41cef

Please sign in to comment.