fix checking node connection
This commit is contained in:
parent
d7c67ffcf7
commit
c32de30ca3
|
@ -21,7 +21,7 @@ class BlockchainProcessLauncher {
|
||||||
this.logger.info(__('Starting Blockchain node in another process').cyan);
|
this.logger.info(__('Starting Blockchain node in another process').cyan);
|
||||||
|
|
||||||
this.blockchainProcess = new ProcessLauncher({
|
this.blockchainProcess = new ProcessLauncher({
|
||||||
modulePath: utils.joinPath(__dirname, '../../cmds/blockchain/blockchainProcess.js'),
|
modulePath: utils.joinPath(__dirname, './blockchainProcess.js'),
|
||||||
logger: this.logger,
|
logger: this.logger,
|
||||||
events: this.events,
|
events: this.events,
|
||||||
silent: this.logger.logLevel !== 'trace',
|
silent: this.logger.logLevel !== 'trace',
|
||||||
|
|
|
@ -84,7 +84,7 @@ class BlockchainModule {
|
||||||
console.dir("------");
|
console.dir("------");
|
||||||
console.dir(result);
|
console.dir(result);
|
||||||
console.dir("------");
|
console.dir("------");
|
||||||
if (err === true || result === undefined) {
|
if (err === true || err === undefined) {
|
||||||
return cb(true);
|
return cb(true);
|
||||||
}
|
}
|
||||||
return cb(false);
|
return cb(false);
|
||||||
|
|
Loading…
Reference in New Issue