Skip to content

Commit

Permalink
revert unwanted change
Browse files Browse the repository at this point in the history
  • Loading branch information
enitrat committed Oct 4, 2024
1 parent edce42d commit 06cfad9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/utils/src/traits/bytes.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ pub impl U8SpanExImpl of U8SpanExTrait {
Option::Some(byte) => {
let byte: u64 = (*byte.unbox()).into();
// Accumulate pending_word in a little endian manner
byte * (256 * byte_counter.into())
byte.shl(8_u32 * byte_counter.into())
},
Option::None => { break; },
};
Expand Down

0 comments on commit 06cfad9

Please sign in to comment.