From cd8c1922f96264344e40eab277ccd49d81b8da1d Mon Sep 17 00:00:00 2001 From: David Racero Date: Wed, 12 May 2021 17:34:28 +0200 Subject: [PATCH] fix: Add missing override for UNDERLYING_ASSET_ADDRESS function at AToken.sol --- contracts/protocol/tokenization/AToken.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/protocol/tokenization/AToken.sol b/contracts/protocol/tokenization/AToken.sol index 6f0764db..db7e09b1 100644 --- a/contracts/protocol/tokenization/AToken.sol +++ b/contracts/protocol/tokenization/AToken.sol @@ -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 view override returns (address) { return _underlyingAsset; }