diff --git a/crates/utils/src/helpers.cairo b/crates/utils/src/helpers.cairo index 2eb94f6b2..b77d329e9 100644 --- a/crates/utils/src/helpers.cairo +++ b/crates/utils/src/helpers.cairo @@ -529,7 +529,7 @@ impl U256Impl of U256Trait { impl ByteArrayExt of ByteArrayExTrait { fn from_bytes(mut bytes: Span) -> ByteArray { let mut arr: ByteArray = Default::default(); - let (mut nb_full_words, mut pending_word_len) = DivRem::div_rem( + let (nb_full_words, pending_word_len) = DivRem::div_rem( bytes.len(), 31_u32.try_into().unwrap() ); let mut i = 0;