Skip to content
This repository has been archived by the owner on Oct 31, 2024. It is now read-only.

Commit

Permalink
fix: format
Browse files Browse the repository at this point in the history
  • Loading branch information
atanmarko committed Sep 6, 2023
1 parent 5266a76 commit 84c7ed4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/test/send-token.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ const main = async function (...args: string[]) {
// Approve token burn
const erc20 = new Contract(tokenAddress, ERC20.abi, wallet)
const tx1 = await erc20.approve(erc20Messaging.address, amount)
const txReceipt1 = await tx1.wait()
await tx1.wait()

// Send token
console.log(
Expand All @@ -133,7 +133,7 @@ const main = async function (...args: string[]) {
}
)
const txReceipt = await tx2.wait()

const logs = txReceipt.events?.find(
// eslint-disable-next-line @typescript-eslint/no-explicit-any
(e: any) =>
Expand Down

0 comments on commit 84c7ed4

Please sign in to comment.