Skip to content

Commit

Permalink
Some more explanation.
Browse files Browse the repository at this point in the history
  • Loading branch information
chriseth committed Jan 16, 2024
1 parent c1cc670 commit 91ccb0b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion executor/src/witgen/query_processor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,10 @@ impl<'a, 'b, T: FieldElement, QueryCallback: super::QueryCallback<T>>
Ok(EvalValue::incomplete(IncompleteCause::DataNotYetAvailable))
}
// All other errors are non-recoverable
e => Err(super::EvalError::ProverQueryError(format!("{e:?}"))),
e => Err(super::EvalError::ProverQueryError(format!(
"Error occurred when evaluating prover query {query} on {}:\n{e:?}",
rows.current_row_index
))),
};
}
};
Expand Down

0 comments on commit 91ccb0b

Please sign in to comment.