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 505dc38 commit b9c81d1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contracts/minters/vending-minter-wl-flex/src/contract.rs
Original file line number Diff line number Diff line change
Expand Up @@ -734,10 +734,10 @@ fn _execute_mint(
"network_fee",
coin(network_fee.u128(), mint_price.clone().denom).to_string(),

Check warning on line 735 in contracts/minters/vending-minter-wl-flex/src/contract.rs

View check run for this annotation

Codecov / codecov/patch

contracts/minters/vending-minter-wl-flex/src/contract.rs#L735

Added line #L735 was not covered by tests
)
.add_attribute("mint_price", mint_price.clone().to_string())
.add_attribute("mint_price", mint_price.to_string())

Check warning on line 737 in contracts/minters/vending-minter-wl-flex/src/contract.rs

View check run for this annotation

Codecov / codecov/patch

contracts/minters/vending-minter-wl-flex/src/contract.rs#L737

Added line #L737 was not covered by tests
.add_attribute(
"seller_amount",
coin(seller_amount.u128(), mint_price.clone().denom).to_string(),
coin(seller_amount.u128(), mint_price.denom).to_string(),

Check warning on line 740 in contracts/minters/vending-minter-wl-flex/src/contract.rs

View check run for this annotation

Codecov / codecov/patch

contracts/minters/vending-minter-wl-flex/src/contract.rs#L740

Added line #L740 was not covered by tests
))
}

Expand Down

0 comments on commit b9c81d1

Please sign in to comment.