Skip to content

Commit

Permalink
fix no_std import
Browse files Browse the repository at this point in the history
  • Loading branch information
rnbguy committed Jun 5, 2024
1 parent 8a2b25f commit c8c97fc
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions ibc-core/ics03-connection/src/handler/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,9 @@ where
{
#[cfg(feature = "wasm-wrapped-client-state")]
if host_client_id_at_counterparty.is_wasm_client_id() {
use std::string::ToString;

use ibc_client_wasm_types::client_state::ClientState as WasmClientState;
use ibc_core_connection_types::error::ConnectionError;
use ibc_primitives::prelude::ToString;
use prost::Message;

let wasm_client_state = WasmClientState::try_from(value).map_err(|e| {
Expand Down

0 comments on commit c8c97fc

Please sign in to comment.