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

28 lines
608 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 {VariableDebtToken} from '../../tokenization/VariableDebtToken.sol';
contract MockVariableDebtToken is VariableDebtToken {
constructor(
address _pool,
address _underlyingAssetAddress,
string memory _tokenName,
2020-09-15 13:53:20 +00:00
string memory _tokenSymbol,
address incentivesController
)
public
VariableDebtToken(
_pool,
_underlyingAssetAddress,
_tokenName,
_tokenSymbol,
incentivesController
)
{}
2020-08-18 09:39:34 +00:00
function getRevision() internal override pure returns (uint256) {
return 0x2;
}
}