diff --git a/cmd/basecli/main.go b/cmd/basecli/main.go index 79aa4c4bf2..8b97b76b65 100644 --- a/cmd/basecli/main.go +++ b/cmd/basecli/main.go @@ -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" @@ -39,6 +40,7 @@ func main() { seeds.RootCmd, proofs.RootCmd, txs.RootCmd, + proxy.RootCmd, ) cmd := cli.PrepareMainCmd(BaseCli, "BC", os.ExpandEnv("$HOME/.basecli")) diff --git a/glide.yaml b/glide.yaml index 718b80e6d9..b050008553 100644 --- a/glide.yaml +++ b/glide.yaml @@ -44,7 +44,7 @@ import: - rpc/lib/types - types - package: github.com/tendermint/tmlibs - version: basecoin-cli + version: develop subpackages: - cli - common