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

22 lines
562 B
Solidity
Raw Normal View History

// SPDX-License-Identifier: agpl-3.0
2020-08-18 09:39:34 +00:00
pragma solidity ^0.6.8;
import {StableDebtToken} from '../../tokenization/StableDebtToken.sol';
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 override pure returns (uint256) {
return 0x2;
}
}