Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion src/executor/executorManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1054,7 +1054,7 @@ export class ExecutorManager {
opDetails.accountDeployed
)

if (opDetails.status === "succesful") {
if (opDetails.status === "successful") {
this.eventManager.emitIncludedOnChain(
userOpHash,
transactionHash,
Expand Down
4 changes: 2 additions & 2 deletions src/utils/userop.ts
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ export function getAddressFromInitCodeOrPaymasterAndData(

type UserOperationDetailsType = {
accountDeployed: boolean
status: "succesful" | "calldata_phase_reverted"
status: "successful" | "calldata_phase_reverted"
revertReason?: Hex
}

Expand Down Expand Up @@ -292,7 +292,7 @@ export const getBundleStatus = async ({
// create result entry if doesn't exist
result[opHash] ??= {
accountDeployed: false,
status: "succesful"
status: "successful"
}

switch (eventName) {
Expand Down