From db122276e99976df3ff89d27c7e82d469261cf5d Mon Sep 17 00:00:00 2001 From: Bartosz Nowak Date: Fri, 13 Dec 2024 08:57:25 +0100 Subject: [PATCH] address chunked --- cairo_vm_hints/src/hints/lib/verifiers/evm/account_verifier.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cairo_vm_hints/src/hints/lib/verifiers/evm/account_verifier.rs b/cairo_vm_hints/src/hints/lib/verifiers/evm/account_verifier.rs index d1f61a0b..aaf7cd28 100644 --- a/cairo_vm_hints/src/hints/lib/verifiers/evm/account_verifier.rs +++ b/cairo_vm_hints/src/hints/lib/verifiers/evm/account_verifier.rs @@ -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 = account.address.chunks(8).map(Felt252::from_bytes_le_slice).collect(); exec_scopes.insert_value::(vars::scopes::ACCOUNT, account);