Skip to content

Commit

Permalink
feat: update cairo to 2.8.4 and native to 0.2.0-alpha.4
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigo-pino committed Oct 30, 2024
1 parent b52bd3e commit a8a2638
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 73 deletions.
95 changes: 31 additions & 64 deletions Cargo.lock

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

14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -90,13 +90,13 @@ byteorder = "1.4.3"
bytes = "1"
cached = "0.44.0"
cairo-felt = "0.9.1"
cairo-lang-casm = "2.8.2"
cairo-lang-runner = "2.8.2"
cairo-lang-sierra = "=2.8.2"
cairo-lang-sierra-to-casm = "2.8.2"
cairo-lang-starknet-classes = "2.8.2"
cairo-lang-utils = "2.8.2"
cairo-native = "0.2.0-alpha.2"
cairo-lang-casm = "2.8.4"
cairo-lang-runner = "2.8.4"
cairo-lang-sierra = "=2.8.4"
cairo-lang-sierra-to-casm = "2.8.4"
cairo-lang-starknet-classes = "2.8.4"
cairo-lang-utils = "2.8.4"
cairo-native = "0.2.0-alpha.4"
cairo-vm = "=1.0.1"
camelpaste = "0.1.0"
chrono = "0.4.26"
Expand Down
4 changes: 2 additions & 2 deletions crates/blockifier/src/execution/native/syscall_handler.rs
Original file line number Diff line number Diff line change
Expand Up @@ -297,10 +297,10 @@ impl<'state> StarknetSyscallHandler for &mut NativeSyscallHandler<'state> {

fn sha256_process_block(
&mut self,
_prev_state: &[u32; 8],
_prev_state: &mut [u32; 8],
_current_block: &[u32; 16],
_remaining_gas: &mut u128,
) -> SyscallResult<[u32; 8]> {
) -> SyscallResult<()> {
todo!("Implement sha256_process_block syscall.");
}
}

0 comments on commit a8a2638

Please sign in to comment.