Skip to content

Commit beae074

Browse files
committed
fix typo
1 parent dfea4bb commit beae074

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

public/tutorials/cross-dom-bridge-erc20.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,15 +145,15 @@
145145
console.log('Waiting for tokens to arrive on L2...');
146146

147147
await new Promise(resolve => setTimeout(resolve, 60000)); // 1 minute
148-
const l1BalanceAfterDeposit = await await publicClientL1.readContract({
148+
const l1BalanceAfterDeposit = await publicClientL1.readContract({
149149
address: l1Token,
150150
abi: erc20ABI,
151151
functionName: 'balanceOf',
152152
args: [account.address]
153153
});
154154
console.log(`L1 Balance after deposit: ${formatEther(l1BalanceAfterDeposit)}`);
155155

156-
const l2BalanceAfterDeposit = await await publicClientL2.readContract({
156+
const l2BalanceAfterDeposit = await publicClientL2.readContract({
157157
address: l2Token,
158158
abi: erc20ABI,
159159
functionName: 'balanceOf',

0 commit comments

Comments
 (0)