style(@embark): fix linter errors

This commit is contained in:
Michael Bradley, Jr 2019-09-12 19:39:00 -05:00
parent 9b75165b90
commit 433ff4a27f
2 changed files with 2 additions and 6 deletions

View File

@ -428,7 +428,7 @@ export function BlockchainClient(userConfig, options, communicationConfig) {
let clientClass; let clientClass;
if (communicationConfig) { if (communicationConfig) {
clientClass = WhisperGethClient clientClass = WhisperGethClient;
} else { } else {
clientClass = GethClient; clientClass = GethClient;
} }

View File

@ -1,8 +1,5 @@
import { __ } from 'embark-i18n'; import { __ } from 'embark-i18n';
import { dappPath, ipcPath } from 'embark-utils';
const async = require('async'); const async = require('async');
const {exec, spawn} = require('child_process');
const path = require('path');
const GethMiner = require('./miner'); const GethMiner = require('./miner');
const semver = require('semver'); const semver = require('semver');
const constants = require('embark-core/constants'); const constants = require('embark-core/constants');
@ -140,7 +137,7 @@ class WhisperGethClient {
return accounts; return accounts;
} }
parseListAccountsCommandResultToAddressCount(data = "") { parseListAccountsCommandResultToAddressCount(_data = "") {
return 0; return 0;
} }
@ -258,4 +255,3 @@ class WhisperGethClient {
} }
module.exports = WhisperGethClient; module.exports = WhisperGethClient;