Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

typos-Update entry_point.rs #2741

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions crates/blockifier/src/execution/entry_point.rs
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ impl CallEntryPoint {
) -> EntryPointExecutionResult<CallInfo> {
let execution_result = self.execute(state, context, remaining_gas);
if let Ok(call_info) = &execution_result {
// If the execution of the outer call failed, revert the transction.
// If the execution of the outer call failed, revert the transaction.
if call_info.execution.failed {
return Err(EntryPointExecutionError::ExecutionFailed {
error_trace: extract_trailing_cairo1_revert_trace(
Expand Down Expand Up @@ -221,7 +221,7 @@ pub struct EntryPointExecutionContext {
// The call stack of tracked resources from the first entry point to the current.
pub tracked_resource_stack: Vec<TrackedResource>,

// Information for reverting the state (inludes the revert info of the callers).
// Information for reverting the state (includes the revert info of the callers).
pub revert_infos: ExecutionRevertInfo,
}

Expand Down