Skip to content

Commit

Permalink
Use blockifier and starknet_api from crates.io
Browse files Browse the repository at this point in the history
  • Loading branch information
kkawula committed Jan 23, 2025
1 parent 24a3bd2 commit 5903cd6
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 8 deletions.
15 changes: 10 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ license = "MIT"
license-file = "LICENSE"

[workspace.dependencies]
blockifier = { git = "https://github.com/starkware-libs/sequencer.git", branch = "main-v0.13.4"}
starknet_api = { git = "https://github.com/starkware-libs/sequencer.git", branch = "main-v0.13.4"}
blockifier = "0.14.0-rc.0"
starknet_api = "0.14.0-rc.0"
cairo-lang-casm = { version = "2.10.0-rc.1", features = ["serde"] }
cairo-lang-runner = "2.10.0-rc.1"
cairo-lang-sierra-to-casm = "2.10.0-rc.1"
Expand Down
2 changes: 1 addition & 1 deletion crates/runtime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ impl SyscallPtrAccess for StarknetRuntime<'_> {
}

fn verify_syscall_ptr(&self, ptr: Relocatable) -> SyscallResult<()> {
self.hint_handler.verify_syscall_ptr(ptr)
self.hint_handler.base.verify_syscall_ptr(ptr)
}
}

Expand Down

0 comments on commit 5903cd6

Please sign in to comment.