-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(blockifier): update get class hash at resources
- Loading branch information
1 parent
863c886
commit 3af0799
Showing
2 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
Submodule cairo_native
updated
36 files
+5 −5 | .github/workflows/bench-hyperfine.yml | |
+12 −12 | .github/workflows/ci.yml | |
+2 −2 | .github/workflows/publish.yml | |
+2 −2 | .github/workflows/release.yml | |
+2 −2 | .github/workflows/rustdoc.yml | |
+127 −159 | Cargo.lock | |
+18 −18 | Cargo.toml | |
+2 −2 | Makefile | |
+45 −33 | docs/implementing_libfuncs.md | |
+5 −0 | programs/benches/factorial_2M.c | |
+5 −0 | programs/benches/fib_2M.c | |
+5 −0 | programs/benches/logistic_map.c | |
+4 −7 | runtime/Cargo.toml | |
+6 −236 | runtime/src/lib.rs | |
+1 −1 | rust-toolchain.toml | |
+6 −6 | src/arch.rs | |
+7 −11 | src/bin/cairo-native-test.rs | |
+26 −2 | src/compiler.rs | |
+1 −15 | src/context.rs | |
+0 −6 | src/debug.rs | |
+3 −0 | src/error.rs | |
+58 −32 | src/executor.rs | |
+12 −0 | src/executor/aot.rs | |
+66 −13 | src/executor/contract.rs | |
+13 −0 | src/executor/jit.rs | |
+0 −25 | src/ffi.rs | |
+0 −3 | src/libfuncs.rs | |
+119 −16 | src/libfuncs/gas.rs | |
+0 −1 | src/libfuncs/starknet.rs | |
+9 −6 | src/metadata/gas.rs | |
+7 −13 | src/types.rs | |
+6 −2 | src/types/builtin_costs.rs | |
+44 −0 | src/utils.rs | |
+2 −3 | src/values.rs | |
+19 −25 | tests/common.rs | |
+2 −0 | tests/tests/boolean.rs |
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