Skip to content

Commit

Permalink
Update mod.rs
Browse files Browse the repository at this point in the history
added ; to fix compilation error
  • Loading branch information
dav8t authored Oct 22, 2023
1 parent d0106f4 commit df3273e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion miden/src/tools/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ where
.with_debug_mode(true)
.with_library(&StdLibrary::default())
.map_err(ProgramError::AssemblyError)?
.compile(program)
.compile(program);
let mut execution_details = ExecutionDetails::default();

let vm_state_iterator = processor::execute_iter(&program, stack_inputs, host);
Expand Down

0 comments on commit df3273e

Please sign in to comment.