Skip to content

Commit

Permalink
Fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
georgwiese committed Jan 10, 2025
1 parent 54f1cf2 commit b87b96e
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions executor/src/witgen/machines/block_machine.rs
Original file line number Diff line number Diff line change
Expand Up @@ -389,10 +389,11 @@ impl<'a, T: FieldElement> BlockMachine<'a, T> {
identity_id: u64,
caller_rows: &'b RowPair<'b, 'a, T>,
) -> EvalResult<'a, T> {
let outer_query = match OuterQuery::try_new(caller_rows, self.parts.connections[&identity_id]) {
Ok(outer_query) => outer_query,
Err(incomplete_cause) => return Ok(EvalValue::incomplete(incomplete_cause)),
};
let outer_query =
match OuterQuery::try_new(caller_rows, self.parts.connections[&identity_id]) {
Ok(outer_query) => outer_query,
Err(incomplete_cause) => return Ok(EvalValue::incomplete(incomplete_cause)),
};

log::trace!("Start processing block machine '{}'", self.name());
log::trace!("Left values of lookup:");
Expand Down

0 comments on commit b87b96e

Please sign in to comment.