diff --git a/CHANGELOG.md b/CHANGELOG.md index dfdb3468f7..9058af6dd7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/vm/src/vm/errors/hint_errors.rs b/vm/src/vm/errors/hint_errors.rs index 8d5f61fcb5..e0289d24bf 100644 --- a/vm/src/vm/errors/hint_errors.rs +++ b/vm/src/vm/errors/hint_errors.rs @@ -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),