Launching ipc connection depending on role
This commit is contained in:
parent
09c11662aa
commit
f467fc5a31
|
@ -41,7 +41,7 @@ class ConsoleListener {
|
||||||
}
|
}
|
||||||
|
|
||||||
listenForLogRequests(){
|
listenForLogRequests(){
|
||||||
try {
|
if(this.ipc.ipcRole === 'server'){
|
||||||
this.ipc.on('log', (request) => {
|
this.ipc.on('log', (request) => {
|
||||||
if(request.type == 'contract-log'){
|
if(request.type == 'contract-log'){
|
||||||
|
|
||||||
|
@ -72,8 +72,6 @@ class ConsoleListener {
|
||||||
this.logger.debug(request);
|
this.logger.debug(request);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
} catch(e) {
|
|
||||||
//
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue