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 10, 2024
1 parent b55ed5a commit 2505085
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ describe("TransactionService", () => {
l1BatchNumber: blockDetails.l1BatchNumber,
receiptStatus: transactionReceipt.status,
to: undefined,
contractAddress: "",
});
});

Expand Down Expand Up @@ -185,7 +186,7 @@ describe("TransactionService", () => {
revertReason: traceTransactionResult.revertReason,
isEvmLike: false,
to: undefined,
contractAddress: null,
contractAddress: "",
});
});
});
Expand All @@ -201,7 +202,7 @@ describe("TransactionService", () => {
receiptStatus: 0,
isEvmLike: false,
to: undefined,
contractAddress: null,
contractAddress: "",
});
});
});
Expand Down

0 comments on commit 2505085

Please sign in to comment.