restart web3 service on proces launch
This commit is contained in:
parent
7e058e5016
commit
47591a39dd
|
@ -64,6 +64,10 @@ class Provider {
|
|||
});
|
||||
}
|
||||
|
||||
stop() {
|
||||
this.engine.stop();
|
||||
}
|
||||
|
||||
eth_accounts(payload, cb) {
|
||||
return cb(null, this.addresses);
|
||||
}
|
||||
|
|
|
@ -43,7 +43,6 @@ class ProcessLauncher {
|
|||
if (this.silent) {
|
||||
return;
|
||||
}
|
||||
console.log('Not silent????', this.silent);
|
||||
if (this.logger[msg.type]) {
|
||||
return this.logger[msg.type](this.normalizeInput(msg.message));
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue