We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66ac0c7 commit cd8c61aCopy full SHA for cd8c61a
src/plonk/prover.rs
@@ -124,7 +124,6 @@ where
124
if values.len() > (poly.len() - (meta.blinding_factors() + 1)) {
125
return Err(Error::InstanceTooLarge);
126
}
127
- #[cfg(not(feature = "plutus_debug"))]
128
if !is_committed_instance {
129
transcript.common(&F::from_u128(values.len() as u128))?;
130
src/plonk/verifier.rs
@@ -61,7 +61,6 @@ where
61
62
for instance in instances.iter() {
63
for instance in instance.iter() {
64
65
transcript.common(&F::from_u128(instance.len() as u128))?;
66
for value in instance.iter() {
67
transcript.common(value)?;
0 commit comments