Skip to content

Commit

Permalink
commit clippy autofix
Browse files Browse the repository at this point in the history
  • Loading branch information
jason-c-child committed Apr 12, 2024
1 parent f781a7e commit 61694ce
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions contracts/name-minter/src/contract.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ use cw2::set_contract_version;
use cw721_base::MintMsg;
use cw_utils::{maybe_addr, must_pay, parse_reply_instantiate_data};
use name_marketplace::msg::ExecuteMsg as MarketplaceExecuteMsg;
use schemars::JsonSchema;

use semver::Version;
use serde::{Deserialize, Serialize};

use sg721::{CollectionInfo, InstantiateMsg as Sg721InstantiateMsg};
use sg721_name::msg::{
ExecuteMsg as NameCollectionExecuteMsg, InstantiateMsg as NameCollectionInstantiateMsg,
Expand Down
4 changes: 2 additions & 2 deletions contracts/name-minter/src/state.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
use cosmwasm_std::Addr;
use cw_controllers::Admin;
use cw_storage_plus::Item;
use serde::{Deserialize, Serialize};

use sg_name_minter::{Config, SudoParams};
use whitelist_updatable::helpers::WhitelistUpdatableContract;

use whitelist_updatable_flatrate::helpers::WhitelistUpdatableFlatrateContract;

pub const SUDO_PARAMS: Item<SudoParams> = Item::new("params");
Expand Down

0 comments on commit 61694ce

Please sign in to comment.