Skip to content

Commit

Permalink
Make AccessControl GSN compatible
Browse files Browse the repository at this point in the history
  • Loading branch information
nventuro committed Mar 11, 2020
1 parent 6e92c96 commit 20e2d2b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion contracts/access/AccessControl.sol
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
pragma solidity ^0.6.0;

import "../utils/EnumerableSet.sol";
import "../GSN/Context.sol";

/**
* @dev Contract module that allows children to implement role-based access
Expand Down Expand Up @@ -36,7 +37,7 @@ import "../utils/EnumerableSet.sol";
* roles. More complex role relationships can be created by using
* {_setRoleAdmin}.
*/
abstract contract AccessControl {
abstract contract AccessControl is Context {
using EnumerableSet for EnumerableSet.AddressSet;

struct Role {
Expand Down

0 comments on commit 20e2d2b

Please sign in to comment.