fix: undo changes at IAToken.sol

This commit is contained in:
David Racero 2021-05-12 17:23:50 +02:00
parent d6ede6c87e
commit f78dce9d2b

View File

@ -99,4 +99,9 @@ interface IAToken is IERC20, IScaledBalanceToken, IInitializableAToken {
* @dev Returns the address of the incentives controller contract
**/
function getIncentivesController() external view returns (IAaveIncentivesController);
/**
* @dev Returns the address of the underlying asset of this aToken (E.g. WETH for aWETH)
**/
function UNDERLYING_ASSET_ADDRESS() external view returns (address);
}