Skip to content

Commit 6e7b35e

Browse files
committed
touchups
1 parent 197b6e6 commit 6e7b35e

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

recursion/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ categories.workspace = true
1414
p3-air.workspace = true
1515
p3-batch-stark.workspace = true
1616
p3-challenger.workspace = true
17+
p3-circuit-prover.workspace = true
1718
p3-commit.workspace = true
1819
p3-field.workspace = true
1920
p3-fri.workspace = true
2021
p3-merkle-tree.workspace = true
2122
p3-symmetric.workspace = true
2223
p3-uni-stark.workspace = true
2324
p3-util.workspace = true
24-
p3-circuit-prover.workspace = true
2525

2626
# Other dependencies
2727
itertools.workspace = true

recursion/src/pcs/fri/targets.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -437,7 +437,7 @@ where
437437
InputProofTargets<Val<SC>, SC::Challenge, RecursiveInputMmcs>,
438438
>;
439439

440-
/// Caller must observe all opened values before invoking this method.
440+
/// Observes all opened values and derives PCS-specific challenges.
441441
fn get_challenges_circuit<const RATE: usize>(
442442
circuit: &mut CircuitBuilder<SC::Challenge>,
443443
challenger: &mut CircuitChallenger<RATE>,

recursion/src/verifier/stark.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,6 @@ where
291291
);
292292

293293
// Get PCS-specific challenges (FRI betas, query indices, etc.)
294-
opened_values.observe(circuit, &mut challenger);
295294
let pcs_challenges = SC::Pcs::get_challenges_circuit::<RATE>(
296295
circuit,
297296
&mut challenger,

0 commit comments

Comments
 (0)