Skip to content

Commit

Permalink
feat: Rename burnAndTake parameter name
Browse files Browse the repository at this point in the history
  • Loading branch information
ChefSnoopy committed Jul 31, 2024
1 parent 7cb1eed commit c908789
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1 +1 @@
719001
718653
4 changes: 2 additions & 2 deletions src/pool-cl/base/LiquidityManagement.sol
Original file line number Diff line number Diff line change
Expand Up @@ -126,9 +126,9 @@ abstract contract LiquidityManagement is CLPeripheryImmutableState, PeripheryPay
}
}

function burnAndTake(Currency currency, address to, uint256 amount, bool shouldSettle) internal {
function burnAndTake(Currency currency, address to, uint256 amount, bool shouldTake) internal {
vault.burn(address(this), currency, amount);
if (shouldSettle) {
if (shouldTake) {
vault.take(currency, to, amount);
}
}
Expand Down

0 comments on commit c908789

Please sign in to comment.