Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

#### Upcoming Changes

* fix: honor disable_trace_padding in cairo_run_fuzzed_program [#2316](https://github.com/lambdaclass/cairo-vm/pull/2316)

* fix: Allow WASM32 compilation with std feature enabled [#2315](https://github.com/lambdaclass/cairo-vm/pull/2315)

* chore(vm): unify Uint256 usage across u256 hints and split quotient via Uint512 [#2237](https://github.com/lambdaclass/cairo-vm/pull/2237)
Expand Down
7 changes: 6 additions & 1 deletion vm/src/cairo_run.rs
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,12 @@ pub fn cairo_run_fuzzed_program(

res.map_err(|err| VmException::from_vm_error(&cairo_runner, err))?;

cairo_runner.end_run(false, false, hint_processor, cairo_run_config.fill_holes)?;
cairo_runner.end_run(
cairo_run_config.disable_trace_padding,
false,
hint_processor,
cairo_run_config.fill_holes,
)?;

cairo_runner.read_return_values(allow_missing_builtins)?;
if cairo_run_config.proof_mode {
Expand Down