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'});
|
let ipcObject = new Ipc({ipcRole: 'client'});
|
||||||
|
|
||||||
<<<<<<< HEAD
|
|
||||||
proxy.serve(ipcObject, this.config.rpcHost, this.config.rpcPort, false);
|
proxy.serve(ipcObject, this.config.rpcHost, this.config.rpcPort, false);
|
||||||
proxy.serve(ipcObject, this.config.wsHost, this.config.wsPort, true);
|
proxy.serve(ipcObject, this.config.wsHost, this.config.wsPort, true);
|
||||||
this.config.rpcPort += 10;
|
this.config.rpcPort += constants.blockchain.servicePortOnProxy;
|
||||||
this.config.wsPort += 10;
|
this.config.wsPort += constants.blockchain.servicePortOnProxy;
|
||||||
=======
|
|
||||||
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
|
|
||||||
};
|
};
|
||||||
|
|
||||||
Blockchain.prototype.runCommand = function(cmd, options, callback) {
|
Blockchain.prototype.runCommand = function(cmd, options, callback) {
|
||||||
|
|
Loading…
Reference in New Issue