Skip to content

Commit

Permalink
update dep
Browse files Browse the repository at this point in the history
  • Loading branch information
ebuchman committed Mar 23, 2018
1 parent 7e570bb commit f81b6ec
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 47 deletions.
49 changes: 22 additions & 27 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

35 changes: 16 additions & 19 deletions Gopkg.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,58 +26,55 @@

[[constraint]]
name = "github.com/bgentry/speakeasy"
version = "0.1.0"
version = "~0.1.0"

[[constraint]]
name = "github.com/golang/protobuf"
version = "1.0.0"
version = "~1.0.0"

[[constraint]]
name = "github.com/mattn/go-isatty"
version = "0.0.3"
version = "~0.0.3"

[[constraint]]
name = "github.com/pkg/errors"
version = "0.8.0"
version = "~0.8.0"

[[constraint]]
name = "github.com/spf13/cobra"
version = "0.0.1"
version = "~0.0.1"

[[constraint]]
name = "github.com/spf13/viper"
version = "1.0.0"
version = "~1.0.0"

[[constraint]]
name = "github.com/stretchr/testify"
version = "1.2.1"
version = "~1.2.1"

[[constraint]]
branch = "develop"
version = "~0.10.2"
name = "github.com/tendermint/abci"

[[constraint]]
branch = "master"
version = "~0.5.0"
name = "github.com/tendermint/go-crypto"

[[override]]
branch = "master"
[[constraint]]
version = "~0.7.3"
source = "github.com/tendermint/go-amino"
name = "github.com/tendermint/go-wire"

[[override]]
branch = "develop"
name = "github.com/tendermint/go-amino"

[[constraint]]
branch = "master"
version = "~0.7.0"
name = "github.com/tendermint/iavl"

[[constraint]]
branch = "develop"
branch = "bucky/dep"
name = "github.com/tendermint/tendermint"

[[override]]
branch = "rigel/cli-refactor"
[[constraint]]
version = "~0.7.1"
name = "github.com/tendermint/tmlibs"

[prune]
Expand Down
2 changes: 1 addition & 1 deletion store/iavlstore.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const (

func LoadIAVLStore(db dbm.DB, id CommitID) (CommitStore, error) {
tree := iavl.NewVersionedTree(db, defaultIAVLCacheSize)
err := tree.LoadVersion(id.Version)
_, err := tree.LoadVersion(id.Version)
if err != nil {
return nil, err
}
Expand Down

0 comments on commit f81b6ec

Please sign in to comment.