From f535fa1683a853181b012efea88f6a09d33f57fd Mon Sep 17 00:00:00 2001 From: Ranadeep Biswas Date: Sun, 28 Apr 2024 21:25:53 +0200 Subject: [PATCH] rm redundant bound --- ibc-clients/cw-context/src/api.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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; }