Skip to content

Commit 094334f

Browse files
committed
code lint fix
1 parent 414c875 commit 094334f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lib/dashboard/console.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ class Console {
3838
'versions in use:',
3939
'solc: ' + solcVersionInConfig,
4040
'web3.js: ' + web3VersionInConfig
41-
]
41+
];
4242

4343
return text.join('\n');
4444
} else if (cmd === 'quit') {
@@ -48,9 +48,9 @@ class Console {
4848
}
4949

5050
executeCmd(cmd, callback) {
51-
var plugin, pluginOutput;
52-
var plugins = this.plugins.getPluginsFor('console');
53-
for (var i = 0; i < plugins.length; i++) {
51+
let plugin, pluginOutput;
52+
let plugins = this.plugins.getPluginsFor('console');
53+
for (let i = 0; i < plugins.length; i++) {
5454
plugin = plugins[i];
5555
pluginOutput = plugin.runCommands(cmd, {});
5656
if (pluginOutput !== false && pluginOutput !== 'false') return callback(pluginOutput);

0 commit comments

Comments
 (0)