-
Notifications
You must be signed in to change notification settings - Fork 12
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
Update bindings for zk_rows #185
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.
This probably needs some homogenization wrt to the actual type for the zk_rows
field.
@@ -805,7 +810,7 @@ macro_rules! impl_verification_key { | |||
Arc::clone(&srs.0) | |||
}, | |||
|
|||
zk_rows: 3, | |||
zk_rows: zk_rows as u64, |
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 it should be either isize
or usize
instead of u64
.
@@ -591,6 +592,7 @@ macro_rules! impl_verification_key { | |||
evals: &WasmPlonkVerificationEvals, | |||
shifts: &WasmShifts, | |||
lookup_index: Option<WasmLookupVerifierIndex>, | |||
zk_rows: isize, |
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.
usize
?
@@ -601,6 +603,7 @@ macro_rules! impl_verification_key { | |||
evals: evals.clone(), | |||
shifts: shifts.clone(), | |||
lookup_index: lookup_index.clone(), | |||
zk_rows: zk_rows, |
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.
zk_rows: zk_rows, | |
zk_rows, |
This PR is the counterpart of MinaProtocol/mina#14331