Skip to content

Commit

Permalink
Make relocate_trace public
Browse files Browse the repository at this point in the history
  • Loading branch information
fmoletta committed Nov 24, 2023
1 parent 200dd7a commit aad4dc9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* feat: Partially Revert `Optimize trace relocation #906` [#1492](https://github.com/lambdaclass/cairo-vm/pull/1492)

* Remove methods `VirtualMachine::get_relocated_trace`& `VirtualMachine::relocate_trace`
* Add `relocated_trace` field to `CairoRunner`
* Add `relocated_trace` field & `relocate_trace` method to `CairoRunner`

* feat: add debugging capabilities behind `print` feature flag. [#1476](https://github.com/lambdaclass/cairo-vm/pull/1476)

Expand Down
2 changes: 1 addition & 1 deletion vm/src/vm/runners/cairo_runner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -762,7 +762,7 @@ impl CairoRunner {
}

///Relocates the VM's trace, turning relocatable registers to numbered ones
fn relocate_trace(
pub fn relocate_trace(
&mut self,
vm: &VirtualMachine,
relocation_table: &Vec<usize>,
Expand Down

0 comments on commit aad4dc9

Please sign in to comment.