Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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 @@ -14,6 +14,8 @@

* chore: Update fastecdsa python package [#1993](https://github.com/lambdaclass/cairo-vm/pull/1993)

* fix: `mod_builtin_fill_memory` could be stuck in an infinite loop [#1975](https://github.com/lambdaclass/cairo-vm/issues/1975)

#### [2.0.0] - 2025-02-26

* fix: Check overflow in cairo pie address calculation [#1945](https://github.com/lambdaclass/cairo-vm/pull/1945)
Expand Down
7 changes: 6 additions & 1 deletion vm/src/vm/runners/builtin_runner/modulo.rs
Original file line number Diff line number Diff line change
Expand Up @@ -566,8 +566,13 @@ impl ModBuiltinRunner {
if let Some((_, mul_mod_runner, _)) = mul_mod {
if mul_mod_runner.fill_value(memory, &mul_mod_inputs, mul_mod_index)? {
mul_mod_index += 1;
continue;
} else {
return Err(RunnerError::FillMemoryCoudNotFillTable(
add_mod_index,
mul_mod_index,
));
}
continue;
}
}

Expand Down
Loading