735546619e
Signed-off-by: T-Hax <>
17 lines
377 B
Solidity
17 lines
377 B
Solidity
// SPDX-License-Identifier: MIT
|
|
|
|
pragma solidity ^0.6.0;
|
|
|
|
import "../token/ERC20/ERC20Burnable.sol";
|
|
|
|
contract ERC20BurnableMock is ERC20Burnable {
|
|
constructor (
|
|
string memory name,
|
|
string memory symbol,
|
|
address initialAccount,
|
|
uint256 initialBalance
|
|
) public ERC20(name, symbol) {
|
|
_mint(initialAccount, initialBalance);
|
|
}
|
|
}
|