From a21eeae5ea59c17327b7b4844c62c53ad091e91d Mon Sep 17 00:00:00 2001 From: Ethan Buchman Date: Thu, 5 Apr 2018 18:45:38 +0300 Subject: [PATCH] democli: add cool and pow commands --- examples/democoin/cmd/democli/main.go | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/examples/democoin/cmd/democli/main.go b/examples/democoin/cmd/democli/main.go index bf499458be..2b71db710d 100644 --- a/examples/democoin/cmd/democli/main.go +++ b/examples/democoin/cmd/democli/main.go @@ -21,6 +21,8 @@ import ( "github.com/cosmos/cosmos-sdk/examples/democoin/app" "github.com/cosmos/cosmos-sdk/examples/democoin/types" + coolcmd "github.com/cosmos/cosmos-sdk/examples/democoin/x/cool/commands" + powcmd "github.com/cosmos/cosmos-sdk/examples/democoin/x/pow/commands" ) // rootCmd is the entry point for this binary @@ -49,6 +51,7 @@ func main() { rootCmd.AddCommand(client.LineBreak) // add query/post commands (custom to binary) + // start with commands common to basecoin rootCmd.AddCommand( client.GetCommands( authcmd.GetAccountCmd("main", cdc, types.GetAccountDecoder(cdc)), @@ -70,6 +73,13 @@ func main() { client.PostCommands( simplestakingcmd.UnbondTxCmd(cdc), )...) + // and now democoin specific commands + rootCmd.AddCommand( + client.PostCommands( + coolcmd.QuizTxCmd(cdc), + coolcmd.SetTrendTxCmd(cdc), + powcmd.MineCmd(cdc), + )...) // add proxy, version and key info rootCmd.AddCommand(