Skip to content

Commit

Permalink
Cleanup felt252 type decl
Browse files Browse the repository at this point in the history
  • Loading branch information
b-j-roberts committed Apr 5, 2024
1 parent 39ccd99 commit 3e01f1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bytes/src/storage.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ impl BytesStore of Store<Bytes> {
/// * 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)
}

Expand Down

0 comments on commit 3e01f1e

Please sign in to comment.