Skip to content

Commit 0099078

Browse files
committed
fix lint
1 parent c1809e3 commit 0099078

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lib/cmds/blockchain/dev_funds.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ class DevFunds {
7474

7575
unlockAccounts(password, cb) {
7676
async.each(this.accounts, (account, next) => {
77-
this.web3.eth.personal.unlockAccount(account, password).then((result) => {
77+
this.web3.eth.personal.unlockAccount(account, password).then((_result) => {
7878
next();
7979
}).catch(next);
8080
}, cb);
@@ -87,7 +87,7 @@ class DevFunds {
8787
const remainingBalance = balance - currBalance;
8888
if (remainingBalance <= 0) return next();
8989

90-
this.web3.eth.sendTransaction({to: account, value: remainingBalance}).then((result) => {
90+
this.web3.eth.sendTransaction({to: account, value: remainingBalance}).then((_result) => {
9191
next();
9292
}).catch(next);
9393
}, cb);

lib/contracts/fundAccount.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ function fundAccount(web3, accountAddress, hexBalance, callback) {
4848
});
4949
},
5050
function getNonce(next) {
51-
web3.eth.getTransactionCount(coinbaseAddress, (err, _nonce) => {
51+
web3.eth.getTransactionCount(coinbaseAddress, (err, nonce) => {
5252
if (err) {
5353
return next(err);
5454
}

0 commit comments

Comments
 (0)