Skip to content

Commit

Permalink
fix(native_blockifier): switch the order of major and minor in sierra…
Browse files Browse the repository at this point in the history
… version
  • Loading branch information
AvivYossef-starkware committed Mar 2, 2025
1 parent a766f69 commit b6d4704
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ impl StateReader for PyStateReader {
py_versioned_raw_compiled_class.get_item(0)?.extract()?;

// Extract and process the Sierra version
let (minor, major, patch): (u64, u64, u64) =
let (major, minor, patch): (u64, u64, u64) =
py_versioned_raw_compiled_class.get_item(1)?.extract()?;

let sierra_version = SierraVersion::new(major, minor, patch);
Expand Down

0 comments on commit b6d4704

Please sign in to comment.