diff --git a/starky2/src/constraint_consumer.rs b/starky2/src/constraint_consumer.rs index ada28730..fd21e366 100644 --- a/starky2/src/constraint_consumer.rs +++ b/starky2/src/constraint_consumer.rs @@ -9,7 +9,7 @@ use plonky2::plonk::circuit_builder::CircuitBuilder; pub struct ConstraintConsumer { /// Random values used to combine multiple constraints into one. - alphas: Vec, + pub alphas: Vec, /// Running sums of constraints that have been emitted so far, scaled by powers of alpha. // TODO(JN): This is pub so it can be used in a test. Once we have an API for accessing this