From 1cb9ba198650c8582e12657c0ac9b21fa379ff06 Mon Sep 17 00:00:00 2001 From: miguelmtzinf Date: Wed, 14 Dec 2022 22:33:53 +0100 Subject: [PATCH 1/2] fix: Fix param of IAToken function --- contracts/interfaces/IAToken.sol | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contracts/interfaces/IAToken.sol b/contracts/interfaces/IAToken.sol index a50e11d5c..441d3a200 100644 --- a/contracts/interfaces/IAToken.sol +++ b/contracts/interfaces/IAToken.sol @@ -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. From de66eec55e165d424f1cf8c19788dbca24280e4b Mon Sep 17 00:00:00 2001 From: miguelmtzinf Date: Wed, 14 Dec 2022 22:35:11 +0100 Subject: [PATCH 2/2] chore: Bump package version --- package-lock.json | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index 89a955f4b..0002302c3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@aave/core-v3", - "version": "1.16.2-beta.3", + "version": "1.16.2-beta.4", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@aave/core-v3", - "version": "1.16.2-beta.3", + "version": "1.16.2-beta.4", "license": "BUSL-1.1", "devDependencies": { "@aave/deploy-v3": "1.51.0", diff --git a/package.json b/package.json index 4c8abc777..1d7644f2f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@aave/core-v3", - "version": "1.16.2-beta.3", + "version": "1.16.2-beta.4", "description": "Aave Protocol V3 core smart contracts", "files": [ "contracts",