mirror of https://github.com/embarklabs/embark.git
style(@embark): fix linter errors
This commit is contained in:
parent
9b75165b90
commit
433ff4a27f
|
@ -428,7 +428,7 @@ export function BlockchainClient(userConfig, options, communicationConfig) {
|
|||
let clientClass;
|
||||
|
||||
if (communicationConfig) {
|
||||
clientClass = WhisperGethClient
|
||||
clientClass = WhisperGethClient;
|
||||
} else {
|
||||
clientClass = GethClient;
|
||||
}
|
||||
|
|
|
@ -1,8 +1,5 @@
|
|||
import { __ } from 'embark-i18n';
|
||||
import { dappPath, ipcPath } from 'embark-utils';
|
||||
const async = require('async');
|
||||
const {exec, spawn} = require('child_process');
|
||||
const path = require('path');
|
||||
const GethMiner = require('./miner');
|
||||
const semver = require('semver');
|
||||
const constants = require('embark-core/constants');
|
||||
|
@ -140,7 +137,7 @@ class WhisperGethClient {
|
|||
return accounts;
|
||||
}
|
||||
|
||||
parseListAccountsCommandResultToAddressCount(data = "") {
|
||||
parseListAccountsCommandResultToAddressCount(_data = "") {
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
@ -258,4 +255,3 @@ class WhisperGethClient {
|
|||
}
|
||||
|
||||
module.exports = WhisperGethClient;
|
||||
|
||||
|
|
Loading…
Reference in New Issue