Skip to content

Commit

Permalink
use import
Browse files Browse the repository at this point in the history
  • Loading branch information
rnbguy committed Apr 24, 2024
1 parent 095559f commit 39e407e
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions ibc-clients/cw-context/src/types/msgs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ use ibc_core::host::types::path::Path;
use ibc_core::primitives::proto::Any;
use prost::Message;

use super::error::ContractError;
use crate::types::error::ContractError;
use crate::types::response::QueryResponse;

Check failure on line 16 in ibc-clients/cw-context/src/types/msgs.rs

View workflow job for this annotation

GitHub Actions / Compile and upload Tendermint CosmWasm client

unused import: `crate::types::response::QueryResponse`

// ------------------------------------------------------------
// Implementation of the InstantiateMsg struct
Expand Down Expand Up @@ -234,15 +235,15 @@ pub struct MigrateClientStoreMsg {}
#[derive(QueryResponses, derive_more::From)]
#[cw_serde]
pub enum QueryMsg {
#[returns(crate::types::response::QueryResponse)]
#[returns(QueryResponse)]
Status(StatusMsg),
#[returns(crate::types::response::QueryResponse)]
#[returns(QueryResponse)]
ExportMetadata(ExportMetadataMsg),
#[returns(crate::types::response::QueryResponse)]
#[returns(QueryResponse)]
TimestampAtHeight(TimestampAtHeightMsg),
#[returns(crate::types::response::QueryResponse)]
#[returns(QueryResponse)]
VerifyClientMessage(VerifyClientMessageRaw),
#[returns(crate::types::response::QueryResponse)]
#[returns(QueryResponse)]
CheckForMisbehaviour(CheckForMisbehaviourMsgRaw),
}

Expand Down

0 comments on commit 39e407e

Please sign in to comment.