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 aa91c18
Showing 1 changed file with 1 addition and 1 deletion.
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 aa91c18

Please sign in to comment.