* Bump required compiler version to 0.5.2. * Fix shadowed variable warning in ERC20Migrator. * Rename Counter to Counters. * Add dummy state variable to SafeERC20Helper. * Update changelog entry. * Fix CountersImpl name. * Improve changelog entry.
10 lines
244 B
Solidity
10 lines
244 B
Solidity
pragma solidity ^0.5.2;
|
|
|
|
import "../token/ERC20/ERC20Burnable.sol";
|
|
|
|
contract ERC20BurnableMock is ERC20Burnable {
|
|
constructor (address initialAccount, uint256 initialBalance) public {
|
|
_mint(initialAccount, initialBalance);
|
|
}
|
|
}
|