diff --git a/ibc-clients/cw-context/src/api.rs b/ibc-clients/cw-context/src/api.rs index 5877b190a5..a8f4da4783 100644 --- a/ibc-clients/cw-context/src/api.rs +++ b/ibc-clients/cw-context/src/api.rs @@ -1,7 +1,5 @@ use ibc_core::client::context::client_state::ClientStateExecution; use ibc_core::client::context::consensus_state::ConsensusState as ConsensusStateTrait; -use ibc_core::client::types::error::ClientError; -use ibc_core::primitives::proto::Any; use crate::context::Context; @@ -10,5 +8,5 @@ use crate::context::Context; /// object. pub trait ClientType<'a>: Sized { type ClientState: ClientStateExecution>; - type ConsensusState: ConsensusStateTrait + Into + TryFrom; + type ConsensusState: ConsensusStateTrait; }