Merge pull request #73 from aave/fix/interface-inheritance

Fixed interface update
This commit is contained in:
Ernesto Boado 2021-04-12 11:41:56 +02:00 committed by GitHub
commit d5899dd524
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -273,7 +273,7 @@ contract AToken is
/**
* @dev Returns the address of the underlying asset of this aToken (E.g. WETH for aWETH)
**/
function UNDERLYING_ASSET_ADDRESS() public view returns (address) {
function UNDERLYING_ASSET_ADDRESS() public override view returns (address) {
return _underlyingAsset;
}