Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: nucypher/nucypher-contracts
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: b077c1b8a3afaee3ca199b65cc5b7b11186ed9ca
Choose a base ref
..
head repository: nucypher/nucypher-contracts
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 813227ea671b4886010fc0b2f78517d63046d65b
Choose a head ref
Showing with 0 additions and 2 deletions.
  1. +0 −2 contracts/contracts/coordination/ManagedAllowList.sol
2 changes: 0 additions & 2 deletions contracts/contracts/coordination/ManagedAllowList.sol
Original file line number Diff line number Diff line change
@@ -35,7 +35,6 @@ contract ManagedAllowList is GlobalAllowList, AccessControlUpgradeable {
/**
* Prepares cohort admin role identificator for the specific ritual
* @param ritualId The ID of the ritual
* @param role Role identificator
*/
function cohortAdminRole(uint32 ritualId) public pure returns (bytes32) {
return ritualRole(ritualId, COHORT_ADMIN_BASE);
@@ -44,7 +43,6 @@ contract ManagedAllowList is GlobalAllowList, AccessControlUpgradeable {
/**
* Prepares auth admin role identificator for the specific ritual
* @param ritualId The ID of the ritual
* @param role Role identificator
*/
function authAdminRole(uint32 ritualId) public pure returns (bytes32) {
return ritualRole(ritualId, AUTH_ADMIN_BASE);