* 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.
9 lines
217 B
Solidity
9 lines
217 B
Solidity
pragma solidity ^0.5.2;
|
|
|
|
import "../token/ERC20/ERC20Mintable.sol";
|
|
import "./MinterRoleMock.sol";
|
|
|
|
contract ERC20MintableMock is ERC20Mintable, MinterRoleMock {
|
|
// solhint-disable-previous-line no-empty-blocks
|
|
}
|