From b5479684db93580a68be8d14135ce59b2bc593f9 Mon Sep 17 00:00:00 2001 From: Charlie Little Date: Wed, 18 Sep 2024 12:41:10 -0500 Subject: [PATCH] Remove unused imports --- src/contract.rs | 2 +- src/state.rs | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/contract.rs b/src/contract.rs index c99b3f4..f50c18d 100644 --- a/src/contract.rs +++ b/src/contract.rs @@ -2,7 +2,7 @@ use cosmwasm_std::entry_point; use cosmwasm_std::{ to_json_binary, Binary, CosmosMsg, Deps, DepsMut, Env, IbcMsg, IbcTimeout, MessageInfo, - Response, StdResult, Timestamp, + Response, StdResult, }; use cw2::set_contract_version; diff --git a/src/state.rs b/src/state.rs index 87acaa0..1fd9951 100644 --- a/src/state.rs +++ b/src/state.rs @@ -1,7 +1,6 @@ use schemars::JsonSchema; use serde::{Deserialize, Serialize}; -use cosmwasm_std::{Addr, IbcTimeout}; use cw_storage_plus::Item; #[derive(Serialize, Deserialize, Clone, Debug, PartialEq, Eq, JsonSchema)]