small fixes

This commit is contained in:
Jeremiah Andrews
2018-05-31 21:50:01 -07:00
parent a032386e87
commit 744f78573e
3 changed files with 27 additions and 24 deletions
+3 -3
View File
@@ -73,12 +73,12 @@ func AddCommands(
rootCmd.PersistentFlags().String("log_level", ctx.Config.LogLevel, "Log level")
tendCmd := &cobra.Command{
tendermintCmd := &cobra.Command{
Use: "tendermint",
Short: "Tendermint subcommands",
}
tendCmd.AddCommand(
tendermintCmd.AddCommand(
UnsafeResetAllCmd(ctx),
ShowNodeIDCmd(ctx),
ShowValidatorCmd(ctx),
@@ -88,7 +88,7 @@ func AddCommands(
InitCmd(ctx, cdc, appInit),
StartCmd(ctx, appCreator),
client.LineBreak,
tendCmd,
tendermintCmd,
client.LineBreak,
ExportCmd(ctx, cdc, appExport),
client.LineBreak,