Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ZumZoom committed Apr 12, 2024
1 parent 1a5eb0e commit 0ae441f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion deploy/deploy-FeeTaker.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
const hre = require('hardhat');
const { ethers } = hre;
const { getChainId } = hre;

const WETH = {
Expand All @@ -20,7 +21,7 @@ const ROUTER_V6_ADDR = '0x111111125421ca6dc452d289314280a0f8842a65';

const FEE_TAKER_SALT = ethers.keccak256(ethers.toUtf8Bytes('FeeTaker'));

const sleep = ms => new Promise(r => setTimeout(r, ms));
const sleep = ms => new Promise(resolve => setTimeout(resolve, ms));

module.exports = async ({ deployments, getNamedAccounts }) => {
const networkName = hre.network.name;
Expand Down

0 comments on commit 0ae441f

Please sign in to comment.