2020-08-20 12:32:20 +00:00
|
|
|
// SPDX-License-Identifier: agpl-3.0
|
2020-11-20 10:45:20 +00:00
|
|
|
pragma solidity 0.6.12;
|
2020-08-10 18:20:08 +00:00
|
|
|
|
2020-11-23 10:28:57 +00:00
|
|
|
import {AToken} from '../../protocol/tokenization/AToken.sol';
|
2021-01-28 10:05:19 +00:00
|
|
|
import {ILendingPool} from '../../interfaces/ILendingPool.sol';
|
|
|
|
import {IAaveIncentivesController} from '../../interfaces/IAaveIncentivesController.sol';
|
2020-08-10 18:20:08 +00:00
|
|
|
|
|
|
|
contract MockAToken is AToken {
|
2020-11-23 10:28:57 +00:00
|
|
|
function getRevision() internal pure override returns (uint256) {
|
2020-08-10 18:20:08 +00:00
|
|
|
return 0x2;
|
|
|
|
}
|
|
|
|
}
|