diff --git a/src/bytes/src/storage.cairo b/src/bytes/src/storage.cairo index 4c2ee664..4b94df01 100644 --- a/src/bytes/src/storage.cairo +++ b/src/bytes/src/storage.cairo @@ -49,7 +49,7 @@ impl BytesStore of Store { /// * The short string `Bytes` is used as the capacity argument of the sponge /// construction (domain separation). fn inner_bytes_pointer(address: StorageAddress, chunk: felt252) -> StorageBaseAddress { - let (r, _, _) = core::poseidon::hades_permutation(address.into(), chunk, 'Bytes'_felt252); + let (r, _, _) = core::poseidon::hades_permutation(address.into(), chunk, 'Bytes'); storage_base_address_from_felt252(r) }