Skip to content

Commit

Permalink
fix(blockifier): fix input of EntryPointExecutionError,ExecutionFaile…
Browse files Browse the repository at this point in the history
…d error (#1488)
  • Loading branch information
ayeletstarkware authored Oct 21, 2024
1 parent 64f4db5 commit d032638
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
use cairo_native::execution_result::ContractExecutionResult;
use cairo_vm::vm::runners::cairo_runner::ExecutionResources;
use num_traits::ToPrimitive;
use starknet_api::execution_utils::format_panic_data;

use crate::execution::call_info::{CallExecution, CallInfo, Retdata};
use crate::execution::contract_class::{NativeContractClassV1, TrackedResource};
Expand Down Expand Up @@ -44,7 +45,9 @@ pub fn execute_entry_point_call(
if res.failure_flag
&& !syscall_handler.context.versioned_constants().enable_reverts =>
{
Err(EntryPointExecutionError::ExecutionFailed { error_data: res.return_values })
Err(EntryPointExecutionError::ExecutionFailed {
error_trace: format_panic_data(&res.return_values),
})
}
Ok(res) => Ok(res),
}?;
Expand Down

0 comments on commit d032638

Please sign in to comment.