You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
243 B
13 lines
243 B
7 years ago
|
pragma solidity ^0.4.24;
|
||
8 years ago
|
|
||
7 years ago
|
import "../token/ERC20/ERC20Burnable.sol";
|
||
8 years ago
|
|
||
7 years ago
|
|
||
7 years ago
|
contract ERC20BurnableMock is ERC20Burnable {
|
||
8 years ago
|
|
||
7 years ago
|
constructor(address _initialAccount, uint256 _initialBalance) public {
|
||
7 years ago
|
_mint(_initialAccount, _initialBalance);
|
||
8 years ago
|
}
|
||
|
|
||
8 years ago
|
}
|