Skip to content

Commit

Permalink
Make _handleAction virtual in position manager (#240)
Browse files Browse the repository at this point in the history
  • Loading branch information
qiwu7 authored Aug 1, 2024
1 parent c77742c commit 1f473ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/PositionManager.sol
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ contract PositionManager is
_executeActions(unlockData);
}

function _handleAction(uint256 action, bytes calldata params) internal override {
function _handleAction(uint256 action, bytes calldata params) internal virtual override {
if (action == Actions.INCREASE_LIQUIDITY) {
(uint256 tokenId, PositionConfig calldata config, uint256 liquidity, bytes calldata hookData) =
params.decodeModifyLiquidityParams();
Expand Down

0 comments on commit 1f473ec

Please sign in to comment.