From f568e33a3391585ca60c24be8c6dabe3dde5ee20 Mon Sep 17 00:00:00 2001 From: OneTony Date: Mon, 28 Oct 2024 15:10:53 +0200 Subject: [PATCH] fix: linting --- contracts/strategies/BaseStrategy.sol | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/contracts/strategies/BaseStrategy.sol b/contracts/strategies/BaseStrategy.sol index 21bfcf25..f141c6f6 100644 --- a/contracts/strategies/BaseStrategy.sol +++ b/contracts/strategies/BaseStrategy.sol @@ -308,7 +308,10 @@ abstract contract BaseStrategy is IBaseStrategy { /// @param _sender The address of the sender function _afterDistribute(address[] memory _recipientIds, bytes memory _data, address _sender) internal virtual {} - function _initializeStrategy(uint256 _poolId, bytes memory _data) internal virtual {} + /// @notice Hook called to initialize the strategy + /// @param __poolId The pool id + /// @param _data The data to use to initialize the strategy + function _initializeStrategy(uint256 __poolId, bytes memory _data) internal virtual {} /// @notice Strategies should be able to receive native token /// @dev By default onlyAllo should be able to call this to fund the pool