-
Notifications
You must be signed in to change notification settings - Fork 357
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
Set of fixes for boojum integration #73
Set of fixes for boojum integration #73
Conversation
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.
Need to fix failing tests but looks good besides that
@@ -164,7 +164,7 @@ contract Governance is IGovernance, Ownable2Step { | |||
/// @notice Executes the scheduled operation after the delay passed. | |||
/// @dev Both the owner and security council may execute delayed operations. | |||
/// @param _operation The operation parameters will be executed with the upgrade. | |||
function execute(Operation calldata _operation) external onlyOwnerOrSecurityCouncil { | |||
function execute(Operation calldata _operation) external payable onlyOwnerOrSecurityCouncil { |
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.
Should we add test?
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.
I think for this function we may skip it, since it would be basically testing that payable
works
What ❔
Why ❔
Checklist
zk fmt
andzk lint
.