generated from keep-starknet-strange/alexandria
-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: missing stack features & refactoring (#35)
* feat: missing stack features * address pr review * fix: address PR review * fix: address pr review
- Loading branch information
Showing
4 changed files
with
390 additions
and
122 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,5 @@ | ||
// FELT PRIME | ||
const FELT252_PRIME: u256 = 0x800000000000011000000000000000000000000000000000000000000000001; | ||
|
||
// STACK | ||
const STACK_MAX_DEPTH: usize = 1024; |
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 |
---|---|---|
@@ -1,4 +1,11 @@ | ||
#[cfg(test)] | ||
mod test_kakarot; | ||
|
||
#[cfg(test)] | ||
mod test_stack; | ||
|
||
#[cfg(test)] | ||
mod test_memory; | ||
|
||
#[cfg(test)] | ||
mod utils; |
Oops, something went wrong.