Implements @openzeppelin/contracts/access/AccessControl.sol
bytes32 public constant TIMELOCK_ROLE = keccak256("TIMELOCK_ROLE"); bytes32 public constant TIMELOCK_UPGRADES_ROLE = keccak256("TIMELOCK_UPGRADES_ROLE"); bytes32 public constant CS_SERVICE_ROLE = keccak256("CS_SERVICE_ROLE");
Returns a boolean value indicating whether _account has role _role or not.
_account
_role
function checkRole(bytes32 _role, address _account) returns (bool)
bytes32
bytes32 hash of role.
address
Address of entity to be checked.