Skip to content

Commit

Permalink
Merge pull request #60 from public-awesome/jhernandezb/cw721-base-min…
Browse files Browse the repository at this point in the history
…t-event-attr

add missing owner attribute to mint event
  • Loading branch information
JakeHartnell authored Apr 14, 2022
2 parents cbbdbff + 07c05ac commit e715567
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions contracts/cw721-base/src/execute.rs
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ where
Ok(Response::new()
.add_attribute("action", "mint")
.add_attribute("minter", info.sender)
.add_attribute("owner", msg.owner)
.add_attribute("token_id", msg.token_id))
}
}
Expand Down

0 comments on commit e715567

Please sign in to comment.