Skip to content

Commit

Permalink
clippy warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
vladjdk committed Sep 11, 2023
1 parent 0a282bc commit f00ca1d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion contracts/warp-controller/src/contract.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ use cosmwasm_std::{
CosmosMsg, Deps, DepsMut, Env, MessageInfo, QueryRequest, Reply, Response, StdError, StdResult,
SubMsgResult, Uint128, Uint64, WasmMsg,
};
use cw_storage_plus::{Index, Item};
use cw_storage_plus::{Item};

#[cfg_attr(not(feature = "library"), entry_point)]
pub fn instantiate(
Expand Down
2 changes: 1 addition & 1 deletion packages/account/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
use controller::account::{AssetInfo, Fund};
use cosmwasm_schema::cw_serde;
use cosmwasm_std::{Addr, CosmosMsg};
use prost::Message;
use schemars::JsonSchema;
use serde::{Deserialize, Serialize};

Expand All @@ -18,6 +17,7 @@ pub struct InstantiateMsg {
}

#[cw_serde]
#[allow(clippy::large_enum_variant)]
pub enum ExecuteMsg {
Generic(GenericMsg),
WithdrawAssets(WithdrawAssetsMsg),
Expand Down

0 comments on commit f00ca1d

Please sign in to comment.