Skip to content

Commit

Permalink
Revert to scarb 2.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
fmkra committed Jul 17, 2024
1 parent 51b355a commit 713e210
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
scarb nightly-2024-04-20
scarb 2.6.3
starknet-foundry 0.24.0
2 changes: 1 addition & 1 deletion src/common/blake2s.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ fn blake2s_compress(mut s: blake2s_state, m: Array<u32>) -> blake2s_state {
let mut v15: u32 = 0x5BE0CD19; // f1 is always 0

let m_span = m.span();
let mut sigma = [
let mut sigma = array![
0,
1,
2,
Expand Down
2 changes: 1 addition & 1 deletion src/common/blake2s_u8.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ fn blake2s_compress(mut s: blake2s_state, in: Array<u8>) -> blake2s_state {
let mut v15: u32 = 0x5BE0CD19; // f1 is always 0

let m_span = m.span();
let mut sigma = [
let mut sigma = array![
0,
1,
2,
Expand Down

0 comments on commit 713e210

Please sign in to comment.