Skip to content

Commit

Permalink
fix clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
lemunozm committed Jul 12, 2024
1 parent c050e81 commit d456efb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pallets/liquidity-pools/src/hooks.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ where

T::Tokens::burn_from(
currency_id,
&who,
who,
amount_cancelled,
Precision::Exact,
Fortitude::Polite,
Expand Down Expand Up @@ -78,7 +78,7 @@ where

T::Tokens::transfer(
investment_id.clone().into(),
&who,
who,
&domain_address.domain().into_account(),
tranche_tokens_payout,
Preservation::Expendable,
Expand Down Expand Up @@ -109,7 +109,7 @@ where

T::Tokens::burn_from(
currency_id,
&who,
who,
amount_payout,
Precision::Exact,
Fortitude::Polite,
Expand Down

0 comments on commit d456efb

Please sign in to comment.