From 6b1b936c64481d60b4c5805a55d01709d5648ae9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Federico=20Kunze=20K=C3=BCllmer?= <31522760+fedekunze@users.noreply.github.com> Date: Tue, 3 May 2022 12:25:17 +0200 Subject: [PATCH] ci: bump simulations timeout (#1073) --- .github/workflows/test.yml | 16 ++++++++-------- CHANGELOG.md | 5 +---- 2 files changed, 9 insertions(+), 12 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 442c2f07..d682346e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -121,7 +121,7 @@ jobs: test-sim-nondeterminism: runs-on: ubuntu-latest - timeout-minutes: 15 + timeout-minutes: 25 steps: - uses: actions/setup-go@v3 with: @@ -134,14 +134,14 @@ jobs: **/**.go go.mod go.sum - - name: Test x/evm simulation nondeterminism + - name: Test simulation nondeterminism run: | make test-sim-nondeterminism if: env.GIT_DIFF test-sim-random-genesis-fast: runs-on: ubuntu-latest - timeout-minutes: 15 + timeout-minutes: 25 steps: - uses: actions/setup-go@v3 with: @@ -154,14 +154,14 @@ jobs: **/**.go go.mod go.sum - - name: Test x/evm simulation with random genesis + - name: Test simulation with random genesis run: | make test-sim-random-genesis-fast if: env.GIT_DIFF test-sim-import-export: runs-on: ubuntu-latest - timeout-minutes: 15 + timeout-minutes: 25 steps: - uses: actions/setup-go@v3 with: @@ -174,14 +174,14 @@ jobs: **/**.go go.mod go.sum - - name: Test x/evm simulation import and export + - name: Simulation of import and export genesis run: | make test-sim-import-export if: env.GIT_DIFF test-sim-after-import: runs-on: ubuntu-latest - timeout-minutes: 15 + timeout-minutes: 25 steps: - uses: actions/setup-go@v3 with: @@ -194,7 +194,7 @@ jobs: **/**.go go.mod go.sum - - name: Test x/evm simulation after import + - name: Test simulation after import run: | make test-sim-after-import if: env.GIT_DIFF \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 81f2bf07..b55c4a2a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -46,6 +46,7 @@ Ref: https://keepachangelog.com/en/1.0.0/ * Move `rpc/ethereum/types` -> `rpc/types` * Move `rpc/ethereum/backend` -> `rpc/backend` * Move `rpc/ethereum/namespaces` -> `rpc/namespaces/ethereum` +* (rpc) [tharsis#1068](https://github.com/tharsis/ethermint/pull/1068) Fix London hard-fork check logic in JSON-RPC APIs. ### Improvements @@ -55,10 +56,6 @@ Ref: https://keepachangelog.com/en/1.0.0/ * (rpc) [tharsis#1059](https://github.com/tharsis/ethermint/pull/1059) Remove unnecessary event filtering logic on the `eth_baseFee` JSON-RPC endpoint. -### API Breaking - -* (rpc) [tharsis#1068](https://github.com/tharsis/ethermint/pull/1068) Fix london hardfork check logic in json-rpc apis. - ## [v0.14.0] - 2022-04-19 ### API Breaking