mirror of https://github.com/status-im/web3.js.git
removed try catch on socket creation
This commit is contained in:
parent
015e552ffc
commit
bedacacf09
|
@ -33,17 +33,11 @@ var IpcProvider = function (path, net) {
|
|||
|
||||
net = net || require('net');
|
||||
|
||||
this.connection = net.connect({path: this.path});
|
||||
|
||||
try {
|
||||
this.connection = net.connect({path: this.path});
|
||||
} catch(error) {
|
||||
throw errors.InvalidConnection(path);
|
||||
}
|
||||
|
||||
// this.connection.on('error', function(e){
|
||||
// throw errors.InvalidConnection(path);
|
||||
// });
|
||||
|
||||
this.connection.on('error', function(e){
|
||||
console.error('IPC Connection error', e);
|
||||
});
|
||||
|
||||
|
||||
// LISTEN FOR CONNECTION RESPONSES
|
||||
|
|
Loading…
Reference in New Issue