Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
jbearer committed Sep 19, 2023
1 parent 784a90b commit b69f4c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/sdk/tasks/faucet-request.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,6 @@ task('faucet-request', 'Deposits WETH9 onto L2.')
if (balance >= initialBalance + GRANT_AMOUNT) {
break
}
await new Promise(resolve => setTimeout(resolve, 1000))
await new Promise((resolve) => setTimeout(resolve, 1000))
}
})

0 comments on commit b69f4c9

Please sign in to comment.