mirror of https://github.com/embarklabs/embark.git
fixes and linting
This commit is contained in:
parent
8253491a07
commit
5fa795b265
|
@ -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';
|
||||
|
|
|
@ -257,10 +257,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) {
|
||||
|
|
|
@ -20,7 +20,6 @@ class BlockchainModule {
|
|||
registerBlockchainProcess() {
|
||||
const self = this;
|
||||
this.events.request('processes:register', 'blockchain', (cb) => {
|
||||
console.dir("gonna check node connection");
|
||||
self.assertNodeConnection(true, (connected) => {
|
||||
if (connected) return cb();
|
||||
self.startBlockchainNode(cb);
|
||||
|
@ -51,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);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue