Skip to content
This repository has been archived by the owner on Apr 4, 2024. It is now read-only.

Commit

Permalink
release: cherry-pick v0.7.2 (#696)
Browse files Browse the repository at this point in the history
* changelog

* go.mod

* fix: handle file close logic (#679)

* handle file close logic

* Update rpc/ethereum/namespaces/debug/utils.go

* update changelog

Co-authored-by: Federico Kunze Küllmer <[email protected]>

* remove unused var (#680)

Co-authored-by: Federico Kunze Küllmer <[email protected]>

* c++

* fix

* tendermint

* c++

* don't use IBC v2

* fix

Co-authored-by: Tomas Tauber <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: JayT106 <[email protected]>
  • Loading branch information
4 people authored Oct 24, 2021
1 parent 222420f commit 39c49c6
Show file tree
Hide file tree
Showing 11 changed files with 413 additions and 367 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,18 @@ Ref: https://keepachangelog.com/en/1.0.0/

# Changelog

## [v0.7.2] - 2021-10-22

### Improvements

* (deps) [tharsis#692](https://github.com/tharsis/ethermint/pull/692) Bump Cosmos SDK version to [`v0.44.3`](https://github.com/cosmos/cosmos-sdk/releases/tag/v0.44.3).
* (rpc) [tharsis#679](https://github.com/tharsis/ethermint/pull/679) Fix file close handle.
* (deps) [tharsis#668](https://github.com/tharsis/ethermint/pull/668) Bump Tendermint version to [`v0.34.14`](https://github.com/tendermint/tendermint/releases/tag/v0.34.14).

### Bug Fixes

* (rpc) [tharsis#667](https://github.com/tharsis/ethermint/issues/667) Fix `ExpandHome` restrictions bypass

## [v0.7.1] - 2021-10-08

### Bug Fixes
Expand Down
2 changes: 0 additions & 2 deletions app/export.go
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,6 @@ func (app *EthermintApp) prepForZeroHeightGenesis(ctx sdk.Context, jailAllowedAd
// update bond intra-tx counters.
store := ctx.KVStore(app.keys[stakingtypes.StoreKey])
iter := sdk.KVStoreReversePrefixIterator(store, stakingtypes.ValidatorsKey)
counter := int16(0)

for ; iter.Valid(); iter.Next() {
addr := sdk.ValAddress(stakingtypes.AddressFromValidatorsKey(iter.Key()))
Expand All @@ -185,7 +184,6 @@ func (app *EthermintApp) prepForZeroHeightGenesis(ctx sdk.Context, jailAllowedAd
}

app.StakingKeeper.SetValidator(ctx, validator)
counter++
}

iter.Close()
Expand Down
Loading

0 comments on commit 39c49c6

Please sign in to comment.