From 94790ecc46ccab0ef03626a744afb53f0258d308 Mon Sep 17 00:00:00 2001 From: The3D Date: Mon, 12 Apr 2021 11:10:22 +0200 Subject: [PATCH] Fixed interface update --- contracts/protocol/tokenization/AToken.sol | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/contracts/protocol/tokenization/AToken.sol b/contracts/protocol/tokenization/AToken.sol index f2784732..46aae19f 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 override view returns (address) { return _underlyingAsset; } diff --git a/package.json b/package.json index 7076c576..b47534a9 100644 --- a/package.json +++ b/package.json @@ -153,4 +153,4 @@ "ethereum", "solidity" ] -} \ No newline at end of file +}