forked from lambdaclass/cairo-vm
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: return error when hint's PC is invalid (lambdaclass#1340)
* Add test for failing program * Return error when some hint's PC isn't valid * Fix tests (+add test) * Appease clippy * Add some docs * Update changelog * Ignore manually compiled jsons in workflows cache * Fix warning in wasm-demo * Fix hash not hashing wasm-demo program * Fix mismatching paths
- Loading branch information
1 parent
c48543c
commit 7743f59
Showing
10 changed files
with
157 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
{ | ||
"attributes": [], | ||
"builtins": [], | ||
"compiler_version": "0.11.0", | ||
"data": [], | ||
"debug_info": { | ||
"instruction_locations": {} | ||
}, | ||
"hints": { | ||
"18446744073709551615": [ | ||
{ | ||
"accessible_scopes": [], | ||
"code": "", | ||
"flow_tracking_data": { | ||
"ap_tracking": { | ||
"group": 0, | ||
"offset": 0 | ||
}, | ||
"reference_ids": {} | ||
} | ||
} | ||
] | ||
}, | ||
"identifiers": { | ||
"__main__.main": {} | ||
}, | ||
"main_scope": "", | ||
"prime": "0x800000000000011000000000000000000000000000000000000000000000001", | ||
"reference_manager": { | ||
"references": [] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -160,7 +160,7 @@ | |
} | ||
} | ||
], | ||
"46": [ | ||
"4": [ | ||
{ | ||
"accessible_scopes": [ | ||
"__main__", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.