Skip to content

Commit

Permalink
Make linter happy
Browse files Browse the repository at this point in the history
  • Loading branch information
MightOfOaks committed Dec 11, 2023
1 parent 138ecf8 commit cea198d
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions contracts/minters/vending-minter-wl-flex/src/contract.rs
Original file line number Diff line number Diff line change
Expand Up @@ -730,9 +730,15 @@ fn _execute_mint(
.add_attribute("sender", info.sender)
.add_attribute("recipient", recipient_addr)
.add_attribute("token_id", mintable_token_mapping.token_id.to_string())
.add_attribute("network_fee", coin(network_fee.u128(), mint_price.clone().denom).to_string())
.add_attribute(
"network_fee",
coin(network_fee.u128(), mint_price.clone().denom).to_string(),
)
.add_attribute("mint_price", mint_price.clone().to_string())
.add_attribute("seller_amount", coin(seller_amount.u128(), mint_price.clone().denom).to_string(),))
.add_attribute(
"seller_amount",
coin(seller_amount.u128(), mint_price.clone().denom).to_string(),
))
}

fn random_token_list(
Expand Down

0 comments on commit cea198d

Please sign in to comment.