Skip to content

Commit

Permalink
test: fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
petarTxFusion committed Dec 5, 2024
1 parent 1ada4c4 commit c32d786
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -141,8 +141,10 @@ describe("TransactionService", () => {
expect(txData.transaction).toEqual({
...transaction,
...transactionDetails,
isEvmLike: false,
l1BatchNumber: blockDetails.l1BatchNumber,
receiptStatus: transactionReceipt.status,
to: undefined,
});
});

Expand Down Expand Up @@ -181,6 +183,8 @@ describe("TransactionService", () => {
receiptStatus: 0,
error: traceTransactionResult.error,
revertReason: traceTransactionResult.revertReason,
isEvmLike: false,
to: undefined,
});
});
});
Expand All @@ -194,6 +198,8 @@ describe("TransactionService", () => {
...transactionDetails,
l1BatchNumber: blockDetails.l1BatchNumber,
receiptStatus: 0,
isEvmLike: false,
to: undefined,
});
});
});
Expand Down

0 comments on commit c32d786

Please sign in to comment.