From d712d6ffd1b61d9ba5584bbcd6aa094f1ca6305a Mon Sep 17 00:00:00 2001 From: Ethan Frey Date: Wed, 19 Jul 2017 12:22:01 +0200 Subject: [PATCH] Fixed imports in main.go --- cmd/basecli/main.go | 4 ++-- docs/guide/counter/cmd/countercli/main.go | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/cmd/basecli/main.go b/cmd/basecli/main.go index b827f7ffb..cf9e95f9f 100644 --- a/cmd/basecli/main.go +++ b/cmd/basecli/main.go @@ -51,8 +51,8 @@ func main() { // Prepare queries proofs.RootCmd.AddCommand( // These are default parsers, but optional in your app (you can remove key) - proofs.TxCmd, - proofs.KeyCmd, + proofs.TxQueryCmd, + proofs.KeyQueryCmd, coincmd.AccountQueryCmd, noncecmd.NonceQueryCmd, ) diff --git a/docs/guide/counter/cmd/countercli/main.go b/docs/guide/counter/cmd/countercli/main.go index 8cc95f667..6e930cd7d 100644 --- a/docs/guide/counter/cmd/countercli/main.go +++ b/docs/guide/counter/cmd/countercli/main.go @@ -39,8 +39,8 @@ func main() { // Prepare queries proofs.RootCmd.AddCommand( // These are default parsers, optional in your app - proofs.TxCmd, - proofs.KeyCmd, + proofs.TxQueryCmd, + proofs.KeyQueryCmd, coincmd.AccountQueryCmd, noncecmd.NonceQueryCmd,