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.
19 lines
418 B
19 lines
418 B
7 years ago
|
pragma solidity ^0.4.24;
|
||
|
|
||
|
import "../access/roles/PauserRole.sol";
|
||
|
|
||
|
|
||
|
contract PauserRoleMock is PauserRole {
|
||
|
function removePauser(address _account) public {
|
||
|
_removePauser(_account);
|
||
|
}
|
||
|
|
||
|
function onlyPauserMock() public view onlyPauser {
|
||
|
}
|
||
|
|
||
|
// Causes a compilation error if super._removePauser is not internal
|
||
|
function _removePauser(address _account) internal {
|
||
|
super._removePauser(_account);
|
||
|
}
|
||
|
}
|