Skip to content

Commit fa8d012

Browse files
committed
chore: fix merge
1 parent 698cfee commit fa8d012

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

tooling/nargo_cli/src/cli/debug_cmd.rs

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -52,14 +52,10 @@ pub(crate) fn run(
5252
return Ok(());
5353
};
5454

55-
let compiled_program = compile_bin_package(
56-
&workspace,
57-
package,
58-
&args.compile_options,
59-
true,
60-
np_language,
61-
&|opcode| opcode_support.is_opcode_supported(opcode),
62-
)?;
55+
let compiled_program =
56+
compile_bin_package(&workspace, package, &args.compile_options, np_language, &|opcode| {
57+
opcode_support.is_opcode_supported(opcode)
58+
})?;
6359

6460
println!("[{}] Starting debugger", package.name);
6561
let (return_value, solved_witness) =

0 commit comments

Comments
 (0)