Skip to content

Commit 7177860

Browse files
authored
fix: fix untrusted advice opening (#1073)
1 parent d77c66d commit 7177860

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jolt-core/src/zkvm/dag/jolt_dag.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -733,7 +733,7 @@ pub fn verify_jolt_dag<
733733
let Some(ref proof) = proof.untrusted_advice_proof else {
734734
return Err(anyhow::anyhow!("Untrusted advice proof not found"));
735735
};
736-
let Some((point, eval)) = opening_accumulator.get_trusted_advice_opening() else {
736+
let Some((point, eval)) = opening_accumulator.get_untrusted_advice_opening() else {
737737
return Err(anyhow::anyhow!("Untrusted advice opening not found"));
738738
};
739739
PCS::verify(

0 commit comments

Comments
 (0)