Skip to content

Commit cceabd2

Browse files
committed
patch: remove eslint comments
used before this was converted to a string; not intended as part of code example
1 parent 91650dd commit cceabd2

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/data/CreateWallet.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,9 @@ const mnemonic =
66
const walletMnemonic = ethers.Wallet.fromMnemonic(mnemonic)
77
88
// ...or from a private key
9-
// eslint-disable-next-line unused-imports/no-unused-vars
109
const walletPrivateKey = new ethers.Wallet(walletMnemonic.privateKey)
1110
1211
// ...or create a wallet from a random private key
13-
// eslint-disable-next-line unused-imports/no-unused-vars
1412
const randomWallet = ethers.Wallet.createRandom()
1513
1614
walletMnemonic.address
@@ -32,7 +30,6 @@ walletMnemonic.signTransaction(tx)
3230
// { Promise: '0xf865808080948ba1f109551bd432803012645ac136ddd6...dfc' }
3331
3432
// Connect to the Ethereum network using a provider
35-
// eslint-disable-next-line no-undef
3633
const wallet = walletMnemonic.connect(provider)
3734
3835
// Query the network

0 commit comments

Comments
 (0)