Skip to content

Commit

Permalink
chore(blockifier): add log for cairo native execution (#2868)
Browse files Browse the repository at this point in the history
  • Loading branch information
avivg-starkware authored Dec 23, 2024
1 parent 76a13c9 commit 855d985
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions crates/blockifier/src/execution/execution_utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,13 @@ pub fn execute_entry_point_call(
context,
)
} else {
log::debug!(
"Using Cairo Native execution. Block Number: {}, Transaction Hash: {}, Class \
Hash: {}.",
context.tx_context.block_context.block_info.block_number,
context.tx_context.tx_info.transaction_hash(),
call.class_hash.expect("Missing Class Hash")
);
native_entry_point_execution::execute_entry_point_call(
call,
compiled_class,
Expand Down

0 comments on commit 855d985

Please sign in to comment.