diff --git a/CHANGELOG.md b/CHANGELOG.md index 2e0c0098bc..42f248170e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,9 +18,10 @@ - [cronos#997](https://github.com/crypto-org-chain/cronos/pull/997) Fix logic to support proxy contract for cronos originated crc20. - [cronos#1005](https://github.com/crypto-org-chain/cronos/pull/1005) Support specify channel id for send-to-ibc event in case of source token. - [cronos#1069](https://github.com/crypto-org-chain/cronos/pull/1069) Update ethermint to develop, go-ethereum to `v1.10.26` and ibc-go to `v6.2.0`. -- [cronos#1147](https://github.com/crypto-org-chain/cronos/pull/1147), [cronos#1165](https://github.com/crypto-org-chain/cronos/pull/1165) Integrate ica module. +- [cronos#1147](https://github.com/crypto-org-chain/cronos/pull/1147) Integrate ica module. - (deps) [#1121](https://github.com/crypto-org-chain/cronos/pull/1121) Bump Cosmos-SDK to v0.47.5 and ibc-go to v7.2.0. - [cronos#1014](https://github.com/crypto-org-chain/cronos/pull/1014) Support stateful precompiled contract for relayer. +- [cronos#1165](https://github.com/crypto-org-chain/cronos/pull/1165) Icaauth module is not adjusted correctly in ibc-go v7.2.0. ### Bug Fixes diff --git a/integration_tests/test_ibc_rly.py b/integration_tests/test_ibc_rly.py index 0d584ac33c..de5a31fe1a 100644 --- a/integration_tests/test_ibc_rly.py +++ b/integration_tests/test_ibc_rly.py @@ -49,9 +49,10 @@ def ibc(request, tmp_path_factory): for network in prepare_network( path, "ibc", - True, - True, - cluster.Relayer.RLY.value, + incentivized=True, + is_relay=True, + connection_only=False, + relayer=cluster.Relayer.RLY.value, ): if network.proc: procs.append(network.proc) diff --git a/integration_tests/test_ica.py b/integration_tests/test_ica.py index c04a860f94..ee9cedd4ca 100644 --- a/integration_tests/test_ica.py +++ b/integration_tests/test_ica.py @@ -15,7 +15,7 @@ def ibc(request, tmp_path_factory): "prepare-network" name = "ibc" path = tmp_path_factory.mktemp(name) - network = prepare_network(path, name, False) + network = prepare_network(path, name, connection_only=True) yield from network