Fixing conflicts
This commit is contained in:
parent
03483052ea
commit
9e92069667
|
@ -87,18 +87,10 @@ Blockchain.prototype.setupProxy = function() {
|
|||
|
||||
let ipcObject = new Ipc({ipcRole: 'client'});
|
||||
|
||||
<<<<<<< HEAD
|
||||
proxy.serve(ipcObject, this.config.rpcHost, this.config.rpcPort, false);
|
||||
proxy.serve(ipcObject, this.config.wsHost, this.config.wsPort, true);
|
||||
this.config.rpcPort += 10;
|
||||
this.config.wsPort += 10;
|
||||
=======
|
||||
proxy.serve(ipcObject, this.config.rpcHost, this.config.rpcPort, false);
|
||||
proxy.serve(ipcObject, this.config.wsHost, this.config.wsPort, true);
|
||||
this.config.rpcPort += constants.blockchain.servicePortOnProxy;
|
||||
this.config.wsPort += constants.blockchain.servicePortOnProxy;
|
||||
}
|
||||
>>>>>>> Changes based on code review
|
||||
this.config.rpcPort += constants.blockchain.servicePortOnProxy;
|
||||
this.config.wsPort += constants.blockchain.servicePortOnProxy;
|
||||
};
|
||||
|
||||
Blockchain.prototype.runCommand = function(cmd, options, callback) {
|
||||
|
|
Loading…
Reference in New Issue