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 d77c66d commit 7177860Copy full SHA for 7177860
jolt-core/src/zkvm/dag/jolt_dag.rs
@@ -733,7 +733,7 @@ pub fn verify_jolt_dag<
733
let Some(ref proof) = proof.untrusted_advice_proof else {
734
return Err(anyhow::anyhow!("Untrusted advice proof not found"));
735
};
736
- let Some((point, eval)) = opening_accumulator.get_trusted_advice_opening() else {
+ let Some((point, eval)) = opening_accumulator.get_untrusted_advice_opening() else {
737
return Err(anyhow::anyhow!("Untrusted advice opening not found"));
738
739
PCS::verify(
0 commit comments