Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
mmsqe committed Sep 14, 2023
1 parent 9d746f6 commit ee17511
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
7 changes: 4 additions & 3 deletions integration_tests/test_ibc_rly.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion integration_tests/test_ica.py
Original file line number Diff line number Diff line change
Expand Up @@ -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


Expand Down

0 comments on commit ee17511

Please sign in to comment.