Skip to content

Commit

Permalink
clean according to review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
ackratos committed Jun 19, 2019
1 parent c49ad65 commit 99f7fee
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Gopkg.lock

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

3 changes: 1 addition & 2 deletions Gopkg.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,7 @@
[[override]]
name = "github.com/tendermint/iavl"
source = "github.com/binance-chain/bnc-tendermint-iavl"
branch = "add_set_version"
# version = "=v0.12.0-binance.0"
version = "=v0.12.0-binance.1"

[[override]]
name = "github.com/tendermint/tendermint"
Expand Down
2 changes: 1 addition & 1 deletion store/statesync_helper.go
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ func (helper *StateSyncHelper) getCommitedSortedStoreKeys() []sdk.StoreKey {
kvStores := helper.commitMS.GetCommitKVStores()
names := make([]string, 0, len(kvStores))
nameToKey := make(map[string]sdk.StoreKey, len(kvStores))
for key, store := range helper.commitMS.GetCommitKVStores() {
for key, store := range kvStores {
if !sdk.ShouldCommitStore(key.Name()) {
continue
}
Expand Down

0 comments on commit 99f7fee

Please sign in to comment.