Launching ipc connection depending on role

This commit is contained in:
Richard Ramos 2018-06-08 19:08:32 -04:00
parent 09c11662aa
commit f467fc5a31
1 changed files with 1 additions and 3 deletions

View File

@ -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) {
//
} }
} }
} }