Fixed imports in main.go

This commit is contained in:
Ethan Frey 2017-07-19 12:22:01 +02:00
parent f7fb30fbb6
commit d712d6ffd1
2 changed files with 4 additions and 4 deletions

View File

@ -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,
)

View File

@ -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,