Skip to content

Commit

Permalink
馃 [N02] Update @return comments in AAVE strategy
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielVF committed Aug 18, 2021
1 parent 650913e commit b80180b
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions contracts/contracts/strategies/AaveStrategy.sol
Expand Up @@ -56,7 +56,6 @@ contract AaveStrategy is InitializableAbstractStrategy {
* @dev Deposit asset into Aave
* @param _asset Address of asset to deposit
* @param _amount Amount of asset to deposit
* @return amountDeposited Amount of asset that was deposited
*/
function deposit(address _asset, uint256 _amount)
external
Expand All @@ -70,7 +69,6 @@ contract AaveStrategy is InitializableAbstractStrategy {
* @dev Deposit asset into Aave
* @param _asset Address of asset to deposit
* @param _amount Amount of asset to deposit
* @return amountDeposited Amount of asset that was deposited
*/
function _deposit(address _asset, uint256 _amount) internal {
require(_amount > 0, "Must deposit something");
Expand All @@ -97,7 +95,6 @@ contract AaveStrategy is InitializableAbstractStrategy {
* @param _recipient Address to receive withdrawn asset
* @param _asset Address of asset to withdraw
* @param _amount Amount of asset to withdraw
* @return amountWithdrawn Amount of asset that was withdrawn
*/
function withdraw(
address _recipient,
Expand Down

0 comments on commit b80180b

Please sign in to comment.