Skip to content

Commit

Permalink
Fix misleading from attribute when burning funds
Browse files Browse the repository at this point in the history
  • Loading branch information
Jake Hartnell committed Sep 2, 2023
1 parent 99f8ed9 commit 41ef6ec
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion contracts/external/cw-tokenfactory-issuer/src/execute.rs
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,8 @@ pub fn burn(
Ok(Response::new()
.add_message(burn_tokens_msg)
.add_attribute("action", "burn")
.add_attribute("from", info.sender)
.add_attribute("burner", info.sender)
.add_attribute("burn_from_address", burn_from_address.to_string())
.add_attribute("amount", amount))
}

Expand Down

0 comments on commit 41ef6ec

Please sign in to comment.