Skip to content

Commit

Permalink
DD-1439 Fix compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
Pavel Rubin committed Dec 16, 2020
1 parent e850a17 commit 375befe
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion contracts/test/yearn/IEarnAPRWithPool.sol
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,7 @@ contract APRWithPoolOracleStub {
return 0;
}
function getAaveCore() external view returns (address){
return 0;
return address(0);
}
function getAaveAPR(address token) external view returns (uint256){
return 0;
Expand Down Expand Up @@ -451,6 +451,7 @@ contract IEarnAPRWithPool is Ownable {
address public APR;

constructor() public {
APR = address(new APRWithPoolOracleStub());
/*
UNI = address(0xc0a47dFe034B400B47bDaD5FecDa2621de6c4d95);
UNIROI = address(0xD04cA0Ae1cd8085438FDd8c22A76246F315c2687);
Expand Down

0 comments on commit 375befe

Please sign in to comment.