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

Commit c638ade

Browse files
committed
changelog
1 parent 01e9df5 commit c638ade

File tree

3 files changed

+4
-9
lines changed

3 files changed

+4
-9
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -60,12 +60,13 @@ Ref: https://keepachangelog.com/en/1.0.0/
6060
* (rpc) [tharsis#661](https://github.com/tharsis/ethermint/pull/661) Fix OOM bug when creating too many filters using JSON-RPC.
6161
* (evm) [tharsis#660](https://github.com/tharsis/ethermint/pull/660) Fix `nil` pointer panic in `ApplyNativeMessage`.
6262
* (evm, test) [tharsis#649](https://github.com/tharsis/ethermint/pull/649) Test DynamicFeeTx.
63-
* (evm) [tharsis#702](https://github.com/tharsis/ethermint/pull/702) Fix panic in web3 RPC handlers
63+
* (evm) [tharsis#702](https://github.com/tharsis/ethermint/pull/702) Fix panic in web3 RPC handlers
6464
* (rpc) [tharsis#720](https://github.com/tharsis/ethermint/pull/720) Fix `debug_traceTransaction` failure
6565
* (rpc) [tharsis#743](https://github.com/tharsis/ethermint/pull/743) Fix debug JSON RPC handler crash on non-existing block
6666

6767
### Improvements
6868

69+
* (tests) [tharsis#704](https://github.com/tharsis/ethermint/pull/704) Introduce E2E testing framework for clients
6970
* (deps) [tharsis#737](https://github.com/tharsis/ethermint/pull/737) Bump ibc-go to [`v2.0.0`](https://github.com/cosmos/ibc-go/releases/tag/v2.0.0)
7071
* (rpc) [tharsis#671](https://github.com/tharsis/ethermint/pull/671) Don't pass base fee externally for `EthCall`/`EthEstimateGas` apis.
7172
* (evm) [tharsis#674](https://github.com/tharsis/ethermint/pull/674) Refactor `ApplyMessage`, remove

go.mod

+1-2
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ require (
1919
github.com/improbable-eng/grpc-web v0.15.0
2020
github.com/klauspost/compress v1.11.9 // indirect
2121
github.com/miguelmota/go-ethereum-hdwallet v0.1.1
22+
github.com/onsi/ginkgo v1.16.5
2223
github.com/palantir/stacktrace v0.0.0-20161112013806-78658fd2d177
2324
github.com/pkg/errors v0.9.1
2425
github.com/rakyll/statik v0.1.7
@@ -42,8 +43,6 @@ require (
4243
gopkg.in/yaml.v2 v2.4.0
4344
)
4445

45-
require github.com/onsi/ginkgo v1.16.5
46-
4746
require (
4847
filippo.io/edwards25519 v1.0.0-beta.2 // indirect
4948
github.com/99designs/keyring v1.1.6 // indirect

testutil/network/util.go

+1-6
Original file line numberDiff line numberDiff line change
@@ -259,10 +259,5 @@ func WriteFile(name string, dir string, contents []byte) error {
259259
return err
260260
}
261261

262-
err = tmos.WriteFile(file, contents, 0o644)
263-
if err != nil {
264-
return err
265-
}
266-
267-
return nil
262+
return tmos.WriteFile(file, contents, 0o644)
268263
}

0 commit comments

Comments
 (0)