From 3e01f1e6b9f7bfa98a688091c507e54cf8fc06ae Mon Sep 17 00:00:00 2001 From: Brandon Roberts Date: Fri, 5 Apr 2024 10:20:38 -0500 Subject: [PATCH] Cleanup felt252 type decl --- src/bytes/src/storage.cairo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) }