diff --git a/CHANGELOG.md b/CHANGELOG.md index 15c3961446..f37561a916 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ #### Upcoming Changes +* chore: Remove dead SegmentInfo struct from cairo_runner.rs [#2235](https://github.com/lambdaclass/cairo-vm/pull/2235) + * fix: Remove unused dependency getrandom for cairo1-run, and serde_json for wasm-demo-cairo1 [#2238](https://github.com/lambdaclass/cairo-vm/pull/2238) * chore: Unify deps makefile target [#2211](https://github.com/lambdaclass/cairo-vm/pull/2211) diff --git a/vm/src/vm/runners/cairo_runner.rs b/vm/src/vm/runners/cairo_runner.rs index 439e3596f5..026dc8ecf3 100644 --- a/vm/src/vm/runners/cairo_runner.rs +++ b/vm/src/vm/runners/cairo_runner.rs @@ -1545,12 +1545,6 @@ impl CairoRunner { } } -#[derive(Clone, Debug, Eq, PartialEq)] -pub struct SegmentInfo { - pub index: isize, - pub size: usize, -} - //* ---------------------- //* ExecutionResources //* ----------------------