mirror of
https://github.com/fluencelabs/tendermint
synced 2025-04-25 06:42:16 +00:00
[abci-cli] print out all the sub-commands available (#2219)
This commit is contained in:
parent
eb98f1c3a9
commit
ad24d66750
@ -477,11 +477,8 @@ func muxOnCommands(cmd *cobra.Command, pArgs []string) error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func cmdUnimplemented(cmd *cobra.Command, args []string) error {
|
func cmdUnimplemented(cmd *cobra.Command, args []string) error {
|
||||||
// TODO: Print out all the sub-commands available
|
|
||||||
msg := "unimplemented command"
|
msg := "unimplemented command"
|
||||||
if err := cmd.Help(); err != nil {
|
|
||||||
msg = err.Error()
|
|
||||||
}
|
|
||||||
if len(args) > 0 {
|
if len(args) > 0 {
|
||||||
msg += fmt.Sprintf(" args: [%s]", strings.Join(args, " "))
|
msg += fmt.Sprintf(" args: [%s]", strings.Join(args, " "))
|
||||||
}
|
}
|
||||||
@ -489,6 +486,17 @@ func cmdUnimplemented(cmd *cobra.Command, args []string) error {
|
|||||||
Code: codeBad,
|
Code: codeBad,
|
||||||
Log: msg,
|
Log: msg,
|
||||||
})
|
})
|
||||||
|
|
||||||
|
fmt.Println("Available commands:")
|
||||||
|
fmt.Printf("%s: %s\n", echoCmd.Use, echoCmd.Short)
|
||||||
|
fmt.Printf("%s: %s\n", infoCmd.Use, infoCmd.Short)
|
||||||
|
fmt.Printf("%s: %s\n", checkTxCmd.Use, checkTxCmd.Short)
|
||||||
|
fmt.Printf("%s: %s\n", deliverTxCmd.Use, deliverTxCmd.Short)
|
||||||
|
fmt.Printf("%s: %s\n", queryCmd.Use, queryCmd.Short)
|
||||||
|
fmt.Printf("%s: %s\n", commitCmd.Use, commitCmd.Short)
|
||||||
|
fmt.Printf("%s: %s\n", setOptionCmd.Use, setOptionCmd.Short)
|
||||||
|
fmt.Println("Use \"[command] --help\" for more information about a command.")
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user