Skip to content

Commit

Permalink
respond shane comments part 1
Browse files Browse the repository at this point in the history
  • Loading branch information
humanalgorithm committed Aug 16, 2023
1 parent c9df481 commit d8e6ab8
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 12 deletions.
4 changes: 2 additions & 2 deletions contracts/factories/base-factory/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ schemars = { workspace = true }
serde = { workspace = true }
sg1 = { workspace = true }
sg2 = { workspace = true }
cw721-base = { workspace = true }
sg721-base = { workspace = true}
cw721-base = { workspace = true, features = ["library"] }
sg721-base = { workspace = true, features = ["library"]}
sg-std = { workspace = true }
thiserror = { workspace = true }
1 change: 0 additions & 1 deletion contracts/factories/vending-factory/src/contract.rs
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,6 @@ pub fn execute_create_minter(
got: msg.init_msg.per_address_limit,
});
}
//TODO BURNMINT
let denom_min_mint_price = params.min_mint_price.clone().denom()?;
ensure!(
denom_min_mint_price == msg.init_msg.mint_price.denom,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,15 +61,6 @@ pub fn mock_create_minter_init_msg(
}
}

// start_minter_time: Option<Timestamp>,
// end_minter_time: Option<Timestamp>,
// nft_data: Option<NftData>,
// max_per_address_limit: Option<u32>,
// per_address_limit_minter: Option<u32>,
// mint_price_minter: Option<Coin>,
// sg721_code: Option<Box<dyn Contract<StargazeMsgWrapper>>>,
// sg721_codeid: Option<u64>,

pub fn mock_params_proper() -> OpenEditionMinterParams {
OpenEditionMinterParams {
code_id: 1,
Expand Down

0 comments on commit d8e6ab8

Please sign in to comment.