Skip to content

Commit

Permalink
bump cosmwasm-std version
Browse files Browse the repository at this point in the history
  • Loading branch information
Ninjatosba committed Feb 26, 2024
1 parent 021e87c commit 658c409
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 17 deletions.
20 changes: 10 additions & 10 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ license = "Apache-2.0"

[workspace.dependencies]
cosmwasm-schema = "1.5.3"
cosmwasm-std = "1.2.1"
cosmwasm-std = "1.5.3"
omniflix-std = "0.1.3"
cw-controllers = "1.1.0"
cw2 = "1.1.0"
Expand Down
1 change: 1 addition & 0 deletions contracts/factories/round-whitelist-factory/src/utils.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 0 additions & 1 deletion contracts/minters/open-edition-minter/src/state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,5 @@ pub const MINTED_TOKENS: Map<Addr, UserDetails> = Map::new("minted_tokens");
pub const AUTH_DETAILS: Item<AuthDetails> = Item::new("auth_details");

pub fn last_token_id(store: &mut dyn Storage) -> u32 {

MINTED_COUNT.load(store).unwrap_or_default()
}
6 changes: 3 additions & 3 deletions integration-tests/src/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ pub fn return_minter_instantiate_msg() -> CreateMinterMsg {
nsfw: false,
data: None,
};

CreateMinterMsg {
collection_details,
token_details,
Expand Down Expand Up @@ -103,7 +103,7 @@ pub fn return_open_edition_minter_inst_msg() -> OpenEditionMinterCreateMsg {
nsfw: false,
data: None,
};

OpenEditionMinterCreateMsg {
collection_details,
init,
Expand Down Expand Up @@ -144,6 +144,6 @@ pub fn return_factory_inst_message(code_id: u64) -> InstantiateMsg {
product_label: "label".to_string(),
init: Empty {},
};

InstantiateMsg { params }
}
2 changes: 0 additions & 2 deletions packages/minter-types/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,6 @@ pub struct UserDetails {
pub public_mint_count: u32,
}



#[cw_serde]
pub struct Token {
pub token_id: String,
Expand Down

0 comments on commit 658c409

Please sign in to comment.