diff --git a/src/Strategy.sol b/src/Strategy.sol index acb6de1..cb3a486 100644 --- a/src/Strategy.sol +++ b/src/Strategy.sol @@ -78,20 +78,6 @@ contract Strategy is BaseStrategy, Pausable, ReentrancyGuard { MANAGEMENT FUNCTIONS //////////////////////////////////////////////////////////////*/ - /** - * @notice Rescue tokens from the contract - * @param token The address of the token to rescue - * @param amount The amount of tokens to rescue - */ - function rescueToken( - address token, - uint256 amount - ) external onlyManagement { - if (amount > 0) { - IERC20(token).safeTransfer(msg.sender, amount); - } - } - /** * @notice Pause the contract */