Skip to content

Commit

Permalink
address chunked
Browse files Browse the repository at this point in the history
  • Loading branch information
Okm165 committed Dec 13, 2024
1 parent b919084 commit db12227
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ pub fn hint_get_account_address(
.try_into()
.unwrap();
let account = batch.accounts[idx].clone();
let address = account.address;
let address: Vec<Felt252> = account.address.chunks(8).map(Felt252::from_bytes_le_slice).collect();

exec_scopes.insert_value::<Account>(vars::scopes::ACCOUNT, account);

Expand Down

0 comments on commit db12227

Please sign in to comment.