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.
18 lines
396 B
18 lines
396 B
pragma solidity ^0.6.0;
|
|
|
|
import "../token/ERC20/ERC20Pausable.sol";
|
|
|
|
// mock class using ERC20Pausable
|
|
contract ERC20PausableMock is ERC20Pausable {
|
|
constructor (address initialAccount, uint256 initialBalance) public {
|
|
_mint(initialAccount, initialBalance);
|
|
}
|
|
|
|
function pause() external {
|
|
_pause();
|
|
}
|
|
|
|
function unpause() external {
|
|
_unpause();
|
|
}
|
|
}
|
|
|