fixes and linting

This commit is contained in:
Jonathan Rainville 2018-07-31 09:59:58 -04:00 committed by Iuri Matias
parent ca32d7aac0
commit 363608287f
3 changed files with 2 additions and 6 deletions

View File

@ -16,7 +16,7 @@ class ProcessManager {
self.events.setCommandHandler('processes:launch', (name, cb) => {
let process = self.processes[name];
if (process.state != 'unstarted') {
if (process.state !== 'unstarted') {
return cb();
}
process.state = 'starting';

View File

@ -273,10 +273,6 @@ Blockchain.prototype.initChainAndGetAddress = function(callback) {
next(err);
});
},
function copy(next) {
// copy mining script
fs.copy(fs.embarkPath("js"), ".embark/" + self.env + "/js", {overwrite: true}, next);
},
function listAccounts(next) {
self.runCommand(self.client.listAccountsCommand(), {}, (err, stdout, _stderr) => {
if (err || stdout === undefined || stdout.match(/{(\w+)}/) === null || stdout.indexOf("Fatal") >= 0) {

View File

@ -50,7 +50,7 @@ class BlockchainModule {
const {host, port, type, protocol} = self.contractsConfig.deployment;
utils.pingEndpoint(host, port, type, protocol, self.blockchainConfig.wsOrigins.split(',')[0], next);
}
], function (err, _result) {
], function (err) {
if (err === true || err === undefined) {
return cb(true);
}