Skip to content

Commit

Permalink
Make ANY_ENTITY from ACL constant accessible
Browse files Browse the repository at this point in the history
  • Loading branch information
ßingen committed Jun 27, 2018
1 parent 7e91ddc commit f7290fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/acl/ACL.sol
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ contract ACL is IACL, AragonApp, ACLHelpers {
// Hardcoded constant to save gas
//bytes32 constant public EMPTY_PARAM_HASH = keccak256(uint256(0));
bytes32 constant public EMPTY_PARAM_HASH = 0x290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563;
address constant ANY_ENTITY = address(-1);
address constant public ANY_ENTITY = address(-1);

modifier onlyPermissionManager(address _app, bytes32 _role) {
require(msg.sender == getPermissionManager(_app, _role));
Expand Down

0 comments on commit f7290fb

Please sign in to comment.