Skip to content

Commit

Permalink
Make clippy happy
Browse files Browse the repository at this point in the history
  • Loading branch information
MightOfOaks committed Dec 11, 2023
1 parent cea198d commit 505dc38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/minters/vending-minter-wl-flex/src/contract.rs
Original file line number Diff line number Diff line change
Expand Up @@ -716,7 +716,7 @@ fn _execute_mint(
if !amount.is_zero() {
let msg = BankMsg::Send {
to_address: payment_address.unwrap_or(seller).to_string(),
amount: vec![coin(amount.u128(), mint_price.denom)],
amount: vec![coin(amount.u128(), mint_price.clone().denom)],
};
res = res.add_message(msg);
}
Expand Down

0 comments on commit 505dc38

Please sign in to comment.