-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Follow up PR: Removes BetaProgramInitiator, Global is Global, return backward compatibility #279
Conversation
@@ -549,6 +543,16 @@ contract Coordinator is Initializable, AccessControlDefaultAdminRulesUpgradeable | |||
return found; | |||
} | |||
|
|||
function isEncryptionAuthorized( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should add a deprecation notice comment, with a link to #195
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🎸 .
Compatibility with v7.3.0 was checked via nucypher/nucypher#3516
@@ -144,6 +143,10 @@ contract Coordinator is Initializable, AccessControlDefaultAdminRulesUpgradeable | |||
return rituals[ritualId].accessController; | |||
} | |||
|
|||
function getFeeModel(uint32 ritualId) external view returns (IFeeModel) { | |||
return rituals[ritualId].feeModel; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Something occurred to me. What happens to the existing rituals on mainnet
that would not have a feeModel set in their Ritual
struct? I guess those can't be extended? Other side effects?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you are correct, old rituals can't be extended, I can create work around with FlatFeeRateModel as default for old rituals, wdyt?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Opened #282, so let's move on with the PR.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🎸
Type of PR:
Required reviews:
What this does:
Issues fixed/closed:
Why it's needed:
Notes for reviewers:
I'd like to have help with naming new
GlobalAllowList
(to be honest I'd not rename it at all)