Skip to content

Commit

Permalink
fix(launchpad): nft-launchpad storage usage
Browse files Browse the repository at this point in the history
  • Loading branch information
WaDadidou committed Jan 9, 2025
1 parent 26db969 commit b4ac625
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions rust/cw-contracts/nft-launchpad/src/contract.rs
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ impl NftLaunchpad {
merkle_root: String,
) -> Result<Response, ContractError> {
let storage = ctx.deps.storage;
let config = self.config.load(ctx.deps.storage)?;
let config = self.config.load(storage)?;

let mut collection = self
.collections
Expand Down Expand Up @@ -290,7 +290,8 @@ impl NftLaunchpad {

return Ok(Response::new()
.add_attribute("action", "collection_proposal_created")
.add_attribute("proposal_id", proposal_id));
// .add_attribute("proposal_id", proposal_id)
);
}

// tr771 instantiate submessage
Expand Down

0 comments on commit b4ac625

Please sign in to comment.