Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bucky/dep #696

Merged
merged 2 commits into from
Mar 23, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## unrealease
## 0.12.0 (TBD)

BREAKING CHANGES

Expand All @@ -9,6 +9,7 @@ BREAKING CHANGES
* [types] ErrBadNonce -> ErrInvalidSequence
* [types] Replace tx.GetFeePayer with FeePayer(tx) - returns the first signer
* [types] NewStdTx takes the Fee
* [types] ParseAccount -> AccountDecoder; ErrTxParse -> ErrTxDecoder
* [auth] AnteHandler deducts fees
* [bank] Move some errors to `types`
* [bank] Remove sequence and signature from Input
Expand All @@ -24,6 +25,7 @@ FEATURES
* [types] StdFee, and StdTx takes the StdFee
* [specs] Progression of MVPs for IBC
* [x/ibc] Initial shell of IBC functionality (no proofs)
* [x/staking] Simple staking module with bonding/unbonding

IMPROVEMENTS

Expand All @@ -36,6 +38,7 @@ BUG FIXES
* [auth] Fix setting pubkey on new account
* [auth] Require signatures to include the sequences
* [baseapp] Dont panic on nil handler
* [basecoin] Check for empty bytes in account and tx

## 0.11.0 (March 1, 2017)

Expand Down
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