-
Notifications
You must be signed in to change notification settings - Fork 266
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
msgpack serialization initial support #340
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.
LGTM! Well done! Some minor comments.
// Leaves that will be added to the new trees | ||
std::array<NT::fr, KERNEL_NEW_COMMITMENTS_LENGTH * 2> const commitment_leaves; | ||
|
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.
unused?
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.
yup
Description
Lands msgpack support. This serialization scheme uses a JSON-like binary format, along with a custom schema compiler, to make typesafe bindings for the C++. As an example, two functions are bound. More functions will be bound in followup, and eventually old serialization code removed. See barretenberg's msgpack.hpp for more information on usage.
End-to-end example of a msgpack cbind
Checklist: