-
Notifications
You must be signed in to change notification settings - Fork 265
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
docs(yellow-paper): Update kernel with changes from contract deployment #4432
Conversation
Updates private kernel inputs with changes from contract deployment.
@@ -22,8 +22,6 @@ For the _[function_data](#functiondata)_ in _[private_call](#privatecall).[call_ | |||
|
|||
- It must be a private function: | |||
- _`function_data.function_type == private`_ | |||
- It must not be an internal function: | |||
- _`function_data.is_internal == false`_ |
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.
Why removing this check?
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.
The plan is to replace it with an app-level check inside a macro: #4449
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.
Oh nice! The is_internal
flag in function_data
struct and a reference to it still exist in the yp. Maybe they can be removed in this PR altogether? 😃
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.
Good catch! Just removed them in 910f0fe
…nt (AztecProtocol#4432) Updates private kernel inputs with changes from contract deployment. These changes were implemented in AztecProtocol#4337
Updates private kernel inputs with changes from contract deployment.
These changes were implemented in #4337