Skip to content

Commit 4958358

Browse files
authored
Add return data field to messagecalloutput (#1463)
1 parent 35cbc49 commit 4958358

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cairo/ethereum/prague/vm/interpreter.cairo

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -575,8 +575,8 @@ func process_message_call{
575575
logs=squashed_evm.value.logs,
576576
accounts_to_delete=squashed_evm.value.accounts_to_delete,
577577
error=squashed_evm.value.error,
578-
accessed_storage_keys=squashed_evm.value.accessed_storage_keys,
579578
return_data=squashed_evm.value.return_data,
579+
accessed_storage_keys=squashed_evm.value.accessed_storage_keys,
580580
),
581581
);
582582
return msg;
@@ -617,8 +617,8 @@ func create_empty_message_call_output(
617617
logs=empty_tuple_log,
618618
accounts_to_delete=empty_set1,
619619
error=error,
620-
accessed_storage_keys=empty_set3,
621620
return_data=return_data,
621+
accessed_storage_keys=empty_set3,
622622
),
623623
);
624624
return msg;

0 commit comments

Comments
 (0)