Skip to content

Commit

Permalink
chore: Format with cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
ggiraldez committed Oct 11, 2023
1 parent 4f77ff2 commit 4321738
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions acvm-repo/acvm/src/pwg/brillig.rs
Original file line number Diff line number Diff line change
Expand Up @@ -107,13 +107,7 @@ impl<'b, B: BlackBoxFunctionSolver> BrilligSolver<'b, B> {
// Instantiate a Brillig VM given the solved input registers and memory
// along with the Brillig bytecode.
let input_registers = Registers::load(input_register_values);
let vm = VM::new(
input_registers,
input_memory,
&brillig.bytecode,
vec![],
bb_solver,
);
let vm = VM::new(input_registers, input_memory, &brillig.bytecode, vec![], bb_solver);
Ok(Self { vm, acir_index })
}

Expand Down

0 comments on commit 4321738

Please sign in to comment.