aave-protocol-v2/contracts/mocks/upgradeability/MockStableDebtToken.sol

22 lines
571 B
Solidity
Raw Normal View History

// SPDX-License-Identifier: agpl-3.0
2020-11-20 10:45:20 +00:00
pragma solidity 0.6.12;
2020-08-18 09:39:34 +00:00
import {StableDebtToken} from '../../protocol/tokenization/StableDebtToken.sol';
2020-08-18 09:39:34 +00:00
contract MockStableDebtToken is StableDebtToken {
constructor(
address _pool,
address _underlyingAssetAddress,
string memory _tokenName,
2020-09-15 13:53:20 +00:00
string memory _tokenSymbol,
address incentivesController
)
public
StableDebtToken(_pool, _underlyingAssetAddress, _tokenName, _tokenSymbol, incentivesController)
{}
2020-08-18 09:39:34 +00:00
function getRevision() internal pure override returns (uint256) {
2020-08-18 09:39:34 +00:00
return 0x2;
}
}