Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
Okm165 committed Jan 6, 2024
1 parent 378f13d commit 1281bf9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/blake2s_u8.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ fn blake2s_compress(mut s: blake2s_state, in: Array<u8>) -> blake2s_state {
if i == 16 {
break;
}
m.append(load32(*in[4*i+0], *in[4*i+1], *in[4*i+2], *in[4*i+3]));
m.append(load32(*in[4 * i + 0], *in[4 * i + 1], *in[4 * i + 2], *in[4 * i + 3]));
i += 1;
};

Expand Down

0 comments on commit 1281bf9

Please sign in to comment.