mirror of https://github.com/embarklabs/embark.git
fix(@embark/whisper): fix ipc conflict on Windows with 2 Geths
Disables IPC for Whisper as it conflicts with the main process IPC
This commit is contained in:
parent
04a02af524
commit
abac9845c5
|
@ -157,7 +157,7 @@ class WhisperGethClient {
|
|||
let config = this.config;
|
||||
let rpcApi = this.config.rpcApi;
|
||||
let wsApi = this.config.wsApi;
|
||||
let args = [];
|
||||
let args = ['--ipcdisable']; // Add --ipcdisable as ipc is not needed for Whisper and it conflicts on Windows with the blockchain node
|
||||
async.series([
|
||||
function commonOptions(callback) {
|
||||
let cmd = self.commonOptions();
|
||||
|
|
Loading…
Reference in New Issue