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: correct duplicate tuple index in InvalidTrackingGroup error message [#2276](https://github.com/lambdaclass/cairo-vm/pull/2276)

#### [3.0.0] - 2025-11-19

#### [3.0.0-rc.5] - 2025-11-14
Expand Down
2 changes: 1 addition & 1 deletion vm/src/vm/errors/hint_errors.rs
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ pub enum HintError {
KeyNotFound,
#[error("AP tracking data is None; could not apply correction to address")]
NoneApTrackingData,
#[error("Tracking groups should be the same, got {} and {}", (*.0).0, (*.0).0)]
#[error("Tracking groups should be the same, got {} and {}", (*.0).0, (*.0).1)]
InvalidTrackingGroup(Box<(usize, usize)>),
#[error("Expected relocatable for ap, got {0}")]
InvalidApValue(Box<MaybeRelocatable>),
Expand Down