Skip to content

Commit

Permalink
T
Browse files Browse the repository at this point in the history
  • Loading branch information
ermvrs committed Dec 6, 2024
1 parent cdb8d74 commit e35f132
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/transaction/eip2930.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ pub impl AccessListItemImpl of AccessListItemTrait {
let AccessListItem { ethereum_address, mut storage_keys } = *self;

let mut storage_keys_arr = array![];
for storage_key in storage_keys {
for storage_key in storage_keys { // deserialize u256 kullan TODO
storage_keys_arr.append(RLPItem::String(deserialize_bytes((*storage_key).try_into().unwrap(), 32))); // TODO deserialize 32 bytes olmaz 16 low high al
};

Expand Down

0 comments on commit e35f132

Please sign in to comment.