Skip to content

Commit

Permalink
fix: remove ibc-core-connection-types dep under ICS-04
Browse files Browse the repository at this point in the history
  • Loading branch information
Farhad-Shabani committed Sep 20, 2024
1 parent df73878 commit 2c94671
Show file tree
Hide file tree
Showing 7 changed files with 4 additions and 7 deletions.
1 change: 0 additions & 1 deletion ci/cw-check/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion ci/no-std-check/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion ibc-core/ics04-channel/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ all-features = true
[dependencies]
ibc-core-client = { workspace = true }
ibc-core-connection = { workspace = true }
ibc-core-connection-types = { workspace = true }
ibc-core-channel-types = { workspace = true }
ibc-core-commitment-types = { workspace = true }
ibc-core-host = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion ibc-core/ics04-channel/src/handler/chan_close_confirm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ use ibc_core_channel_types::error::ChannelError;
use ibc_core_channel_types::events::CloseConfirm;
use ibc_core_channel_types::msgs::MsgChannelCloseConfirm;
use ibc_core_client::context::prelude::*;
use ibc_core_connection::types::error::ConnectionError;
use ibc_core_connection::types::State as ConnectionState;
use ibc_core_connection_types::error::ConnectionError;
use ibc_core_handler_types::events::{IbcEvent, MessageEvent};
use ibc_core_host::types::path::{ChannelEndPath, ClientConsensusStatePath, Path};
use ibc_core_host::{ExecutionContext, ValidationContext};
Expand Down
2 changes: 1 addition & 1 deletion ibc-core/ics04-channel/src/handler/chan_open_ack.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ use ibc_core_channel_types::error::ChannelError;
use ibc_core_channel_types::events::OpenAck;
use ibc_core_channel_types::msgs::MsgChannelOpenAck;
use ibc_core_client::context::prelude::*;
use ibc_core_connection::types::error::ConnectionError;
use ibc_core_connection::types::State as ConnectionState;
use ibc_core_connection_types::error::ConnectionError;
use ibc_core_handler_types::events::{IbcEvent, MessageEvent};
use ibc_core_host::types::path::{ChannelEndPath, ClientConsensusStatePath, Path};
use ibc_core_host::{ExecutionContext, ValidationContext};
Expand Down
2 changes: 1 addition & 1 deletion ibc-core/ics04-channel/src/handler/chan_open_confirm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ use ibc_core_channel_types::error::ChannelError;
use ibc_core_channel_types::events::OpenConfirm;
use ibc_core_channel_types::msgs::MsgChannelOpenConfirm;
use ibc_core_client::context::prelude::*;
use ibc_core_connection::types::error::ConnectionError;
use ibc_core_connection::types::State as ConnectionState;
use ibc_core_connection_types::error::ConnectionError;
use ibc_core_handler_types::events::{IbcEvent, MessageEvent};
use ibc_core_host::types::path::{ChannelEndPath, ClientConsensusStatePath, Path};
use ibc_core_host::{ExecutionContext, ValidationContext};
Expand Down
2 changes: 1 addition & 1 deletion ibc-core/ics04-channel/src/handler/chan_open_try.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ use ibc_core_channel_types::error::ChannelError;
use ibc_core_channel_types::events::OpenTry;
use ibc_core_channel_types::msgs::MsgChannelOpenTry;
use ibc_core_client::context::prelude::*;
use ibc_core_connection::types::error::ConnectionError;
use ibc_core_connection::types::State as ConnectionState;
use ibc_core_connection_types::error::ConnectionError;
use ibc_core_handler_types::events::{IbcEvent, MessageEvent};
use ibc_core_host::types::identifiers::ChannelId;
use ibc_core_host::types::path::{
Expand Down

0 comments on commit 2c94671

Please sign in to comment.