1234567891011121314151617 |
- pragma solidity ^0.4.24;
- import "../access/roles/WhitelisterRole.sol";
- contract WhitelisterRoleMock is WhitelisterRole {
- function removeWhitelister(address account) public {
- _removeWhitelister(account);
- }
- function onlyWhitelisterMock() public view onlyWhitelister {
- }
- // Causes a compilation error if super._removeWhitelister is not internal
- function _removeWhitelister(address account) internal {
- super._removeWhitelister(account);
- }
- }
|