Minor changes

This commit is contained in:
Thrilok Kumar 2021-01-26 03:52:50 +05:30
parent d60fdc6600
commit bb1ab33d0c

View File

@ -69,7 +69,7 @@ contract Helpers {
} }
} }
contract Resolver is Helpers { contract InstaAaveV1PowerResolver is Helpers {
function getEthPrice() public view returns (uint ethPrice) { function getEthPrice() public view returns (uint ethPrice) {
ethPrice = uint(ChainLinkInterface(getChainlinkEthFeed()).latestAnswer()); ethPrice = uint(ChainLinkInterface(getChainlinkEthFeed()).latestAnswer());
} }
@ -129,6 +129,8 @@ contract Resolver is Helpers {
totalBorrowsETH totalBorrowsETH
); );
} }
return tokensData;
} }
} }