Skip to content

Commit

Permalink
fix: linting
Browse files Browse the repository at this point in the history
  • Loading branch information
0xOneTony committed Oct 28, 2024
1 parent 7a8beb5 commit f568e33
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion contracts/strategies/BaseStrategy.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit f568e33

Please sign in to comment.