Embed light-client proxy

This commit is contained in:
Ethan Frey
2017-05-13 15:08:45 +02:00
parent 109877c9dc
commit d0be11682b
2 changed files with 4 additions and 2 deletions
+2
View File
@@ -7,6 +7,7 @@ import (
keycmd "github.com/tendermint/go-crypto/cmd"
"github.com/tendermint/light-client/commands"
"github.com/tendermint/light-client/commands/proofs"
"github.com/tendermint/light-client/commands/proxy"
"github.com/tendermint/light-client/commands/seeds"
"github.com/tendermint/light-client/commands/txs"
"github.com/tendermint/tmlibs/cli"
@@ -36,6 +37,7 @@ func init() {
BaseCli.AddCommand(proofs.RootCmd)
txs.Register("send", SendTxMaker{})
BaseCli.AddCommand(txs.RootCmd)
BaseCli.AddCommand(proxy.RootCmd)
}
func main() {