From 094334fee78e46c4e3ef7f79b96ab6ef5a23586e Mon Sep 17 00:00:00 2001 From: Todd Baur Date: Fri, 7 Jul 2017 20:46:06 +0900 Subject: [PATCH] code lint fix --- lib/dashboard/console.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/dashboard/console.js b/lib/dashboard/console.js index f76a4d0ad..e684bfc69 100644 --- a/lib/dashboard/console.js +++ b/lib/dashboard/console.js @@ -38,7 +38,7 @@ class Console { 'versions in use:', 'solc: ' + solcVersionInConfig, 'web3.js: ' + web3VersionInConfig - ] + ]; return text.join('\n'); } else if (cmd === 'quit') { @@ -48,9 +48,9 @@ class Console { } executeCmd(cmd, callback) { - var plugin, pluginOutput; - var plugins = this.plugins.getPluginsFor('console'); - for (var i = 0; i < plugins.length; i++) { + let plugin, pluginOutput; + let plugins = this.plugins.getPluginsFor('console'); + for (let i = 0; i < plugins.length; i++) { plugin = plugins[i]; pluginOutput = plugin.runCommands(cmd, {}); if (pluginOutput !== false && pluginOutput !== 'false') return callback(pluginOutput);