Skip to content

Commit

Permalink
chore: fix clippy warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
kerber0x committed Feb 5, 2024
1 parent 2d2f437 commit 2af4791
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
#[cfg(not(feature = "library"))]
use cosmwasm_std::entry_point;
#[cfg(feature = "osmosis")]
use cosmwasm_std::Addr;
use cosmwasm_std::{
to_json_binary, Addr, Binary, Decimal, Deps, DepsMut, Env, MessageInfo, Reply, Response,
StdError, StdResult,
to_json_binary, Binary, Deps, DepsMut, Env, MessageInfo, Reply, Response, StdError, StdResult,
};
use cw2::{get_contract_version, set_contract_version};
use protobuf::Message;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ use serde::{Deserialize, Serialize};
use white_whale_std::fee::Fee;
use white_whale_std::pool_network;
use white_whale_std::pool_network::asset::{AssetInfo, AssetInfoRaw, PairType};
use white_whale_std::pool_network::pair::{Config, FeatureToggle, PoolFee};

use white_whale_std::pool_network::pair::{Config, FeatureToggle};

use crate::helpers::instantiate_fees;
use crate::state::{ALL_TIME_BURNED_FEES, CONFIG, PAIR_INFO};
Expand Down Expand Up @@ -281,7 +282,7 @@ pub fn migrate_to_v135(deps: DepsMut) -> Result<(), StdError> {
struct ConfigV133 {
pub owner: Addr,
pub fee_collector_addr: Addr,
pub pool_fees: PoolFee,
pub pool_fees: pool_network::pair::PoolFee,
pub feature_toggle: FeatureToggle,
}

Expand Down

0 comments on commit 2af4791

Please sign in to comment.