make linter happy

This commit is contained in:
Iuri Matias 2018-07-04 16:36:49 +03:00
parent 1a8989361e
commit ace329ec6e
1 changed files with 1 additions and 1 deletions

View File

@ -221,7 +221,7 @@ Blockchain.prototype.checkPathLength = function() {
Blockchain.prototype.isClientInstalled = function(callback) {
let versionCmd = this.client.determineVersionCommand();
this.runCommand(versionCmd, {}, (err, stdout, stderr) => {
this.runCommand(versionCmd, {}, (err, stdout, _stderr) => {
if (err || !stdout || stdout.indexOf("not found") >= 0) {
return callback('Geth not found');
}