-
Notifications
You must be signed in to change notification settings - Fork 3
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
feat: add traces reader to proof producer #112
base: master
Are you sure you want to change the base?
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.
Generally OK, i went move it to assigner library (trace_parser): #91
proof-producer/bin/proof-producer/include/nil/proof-generator/prover.hpp
Show resolved
Hide resolved
proof-producer/bin/proof-producer/include/nil/proof-generator/traces_reader.hpp
Show resolved
Hide resolved
proof-producer/bin/proof-producer/include/nil/proof-generator/traces_reader.hpp
Outdated
Show resolved
Hide resolved
struct StackOp { | ||
bool is_read; | ||
int idx; | ||
blueprint::zkevm_word_type value; |
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 guess we can keep here executionproofs::Uint256
and make some conversion only when fill assignment table
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.
Same about another values, i mean no need to do conversion from protobuf types to std::byte.
We convert them if need during filling assignment table.
But make sense keep conversion functions for external usage
No description provided.