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.blockchainProcess = new ProcessLauncher({
|
||||
modulePath: utils.joinPath(__dirname, '../../cmds/blockchain/blockchainProcess.js'),
|
||||
modulePath: utils.joinPath(__dirname, './blockchainProcess.js'),
|
||||
logger: this.logger,
|
||||
events: this.events,
|
||||
silent: this.logger.logLevel !== 'trace',
|
||||
|
|
|
@ -84,7 +84,7 @@ class BlockchainModule {
|
|||
console.dir("------");
|
||||
console.dir(result);
|
||||
console.dir("------");
|
||||
if (err === true || result === undefined) {
|
||||
if (err === true || err === undefined) {
|
||||
return cb(true);
|
||||
}
|
||||
return cb(false);
|
||||
|
|
Loading…
Reference in New Issue