Skip to content

Commit

Permalink
fix: Fix param of IAToken function
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelmtzinf committed Dec 14, 2022
1 parent 94fd3c7 commit 1cb9ba1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contracts/interfaces/IAToken.sol
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,10 @@ interface IAToken is IERC20, IScaledBalanceToken, IInitializableAToken {
/**
* @notice Transfers the underlying asset to `target`.
* @dev Used by the Pool to transfer assets in borrow(), withdraw() and flashLoan()
* @param user The recipient of the underlying
* @param target The recipient of the underlying
* @param amount The amount getting transferred
*/
function transferUnderlyingTo(address user, uint256 amount) external;
function transferUnderlyingTo(address target, uint256 amount) external;

/**
* @notice Handles the underlying received by the aToken after the transfer has been completed.
Expand Down

0 comments on commit 1cb9ba1

Please sign in to comment.