File tree Expand file tree Collapse file tree 5 files changed +14
-7
lines changed
Expand file tree Collapse file tree 5 files changed +14
-7
lines changed Original file line number Diff line number Diff line change 66
77* [ #1720 ] ( https://github.com/crypto-org-chain/cronos/pull/1720 ) Include the fix of performance regression after upgrade in iavl.
88
9+ ### State Machine Breaking
10+
11+ * [ #1724 ] ( https://github.com/crypto-org-chain/cronos/pull/1724 ) Include the fix of nonce management in batch tx in ethermint.
12+
913* Dec 9, 2024*
1014
11- v1.4.1
15+ ## v1.4.1
1216
1317### Bug Fixes
1418
Original file line number Diff line number Diff line change @@ -272,7 +272,7 @@ replace (
272272 github.com/dgrijalva/jwt-go => github.com/golang-jwt/jwt/v4 v4.4.2
273273 github.com/ethereum/go-ethereum => github.com/crypto-org-chain/go-ethereum v1.10.20-0.20240926023215-d2275b4afb9a
274274 // release/v1.4.x
275- github.com/evmos/ethermint => github.com/crypto-org-chain/ethermint v0.6.1-0.20241118003049-cd93407bcf05
275+ github.com/evmos/ethermint => github.com/crypto-org-chain/ethermint v0.6.1-0.20241217094803-acbe290991cc
276276 // Fix upstream GHSA-h395-qcrw-5vmq and GHSA-3vp4-m3rf-835h vulnerabilities.
277277 // TODO Remove it: https://github.com/cosmos/cosmos-sdk/issues/10409
278278 github.com/gin-gonic/gin => github.com/gin-gonic/gin v1.9.0
Original file line number Diff line number Diff line change @@ -428,8 +428,8 @@ github.com/crypto-org-chain/cosmos-sdk/store v0.0.0-20241205052910-142c0afa4948
428428github.zerozr99.workers.dev/crypto-org-chain/cosmos-sdk/store v0.0.0-20241205052910-142c0afa4948 /go.mod h1:8DwVTz83/2PSI366FERGbWSH7hL6sB7HbYp8bqksNwM =
429429github.zerozr99.workers.dev/crypto-org-chain/cosmos-sdk/x/tx v0.0.0-20241205052910-142c0afa4948 h1:lb8Mztnt2bpCowKbZMHosyQtXN0QtX/MITH9y5DVNkU =
430430github.zerozr99.workers.dev/crypto-org-chain/cosmos-sdk/x/tx v0.0.0-20241205052910-142c0afa4948 /go.mod h1:V6DImnwJMTq5qFjeGWpXNiT/fjgE4HtmclRmTqRVM3w =
431- github.com/crypto-org-chain/ethermint v0.6.1-0.20241118003049-cd93407bcf05 h1:4mewSJnWOTwRbBntlAtOj5ZevujX4PGwn57QcO99+Bo =
432- github.com/crypto-org-chain/ethermint v0.6.1-0.20241118003049-cd93407bcf05 /go.mod h1:9FNO9k70szJ7CEge4tnJraWu3baTbwNxjpZhZBqlMok =
431+ github.com/crypto-org-chain/ethermint v0.6.1-0.20241217094803-acbe290991cc h1:NDD/ddYvUlnJ6TQMf+VUrN7a9YATYiLZA7xbDHwbJxY =
432+ github.com/crypto-org-chain/ethermint v0.6.1-0.20241217094803-acbe290991cc /go.mod h1:9FNO9k70szJ7CEge4tnJraWu3baTbwNxjpZhZBqlMok =
433433github.zerozr99.workers.dev/crypto-org-chain/go-block-stm v0.0.0-20240919080136-6c49aef68716 h1:OvD5Rm0B6LHUJk6z858UgwdP72jU2DuUdXeclRyKpDI =
434434github.zerozr99.workers.dev/crypto-org-chain/go-block-stm v0.0.0-20240919080136-6c49aef68716 /go.mod h1:iwQTX9xMX8NV9k3o2BiWXA0SswpsZrDk5q3gA7nWYiE =
435435github.zerozr99.workers.dev/crypto-org-chain/go-ethereum v1.10.20-0.20240926023215-d2275b4afb9a h1:IUPD+dg1YQl8cLocxQ/Mbx/ObTgAgcrZlcBhFjsLO40 =
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change @@ -721,6 +721,9 @@ def test_batch_tx(cronos):
721721 == receipts [0 ].gasUsed + receipts [1 ].gasUsed + receipts [2 ].gasUsed
722722 )
723723
724+ # check nonce
725+ assert w3 .eth .get_transaction_count (sender ) == nonce + 3
726+
724727 # check traceTransaction
725728 rsps = [
726729 w3 .provider .make_request ("debug_traceTransaction" , [h .hex ()])["result" ]
You can’t perform that action at this time.
0 commit comments