Clean up comments

This commit is contained in:
Ethan Frey
2017-08-07 18:50:33 +02:00
parent 483ed6d87a
commit 0133723aca
7 changed files with 16 additions and 15 deletions
+5 -6
View File
@@ -27,13 +27,12 @@ import (
// BaseCli - main basecoin client command
var BaseCli = &cobra.Command{
Use: "basecli",
Short: "Light client for tendermint",
Long: `Basecli is an version of tmcli including custom logic to
present a nice (not raw hex) interface to the basecoin blockchain structure.
Short: "Light client for Tendermint",
Long: `Basecli is a certifying light client for the basecoin abci app.
This is a useful tool, but also serves to demonstrate how one can configure
tmcli to work for any custom abci app.
`,
It leverages the power of the tendermint consensus algorithm get full
cryptographic proof of all queries while only syncing a fraction of the
block headers.`,
}
func main() {
-1
View File
@@ -35,7 +35,6 @@ func main() {
// out own init command to not require argument
InitCmd,
commands.StartCmd,
//commands.RelayCmd,
commands.UnsafeResetAllCmd,
commands.VersionCmd,
)
+2 -2
View File
@@ -21,7 +21,7 @@ import (
// EyesCli - main basecoin client command
var EyesCli = &cobra.Command{
Use: "eyescli",
Short: "Light client for tendermint",
Short: "Light client for Tendermint",
Long: `EyesCli is the light client for a merkle key-value store (eyes)`,
}
@@ -33,7 +33,7 @@ func main() {
// These are default parsers, but optional in your app (you can remove key)
query.TxQueryCmd,
query.KeyQueryCmd,
// this is out custom parser
// this is our custom parser
etccmd.EtcQueryCmd,
)