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:
Jonathan Rainville 2019-11-26 13:38:52 -05:00
parent 04a02af524
commit abac9845c5
1 changed files with 1 additions and 1 deletions

View File

@ -157,7 +157,7 @@ class WhisperGethClient {
let config = this.config; let config = this.config;
let rpcApi = this.config.rpcApi; let rpcApi = this.config.rpcApi;
let wsApi = this.config.wsApi; 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([ async.series([
function commonOptions(callback) { function commonOptions(callback) {
let cmd = self.commonOptions(); let cmd = self.commonOptions();