ethereumjs-connect
Advanced tools
Comparing version 0.2.2 to 0.2.3
10
index.js
@@ -302,3 +302,6 @@ /** | ||
console.error("[async] connect error:", err); | ||
return self.connect(rpcinfo, ipcpath, callback, true); | ||
if (!retry) { | ||
return self.connect(rpcinfo, ipcpath, callback, true); | ||
} | ||
return callback(false); | ||
} | ||
@@ -318,3 +321,6 @@ self.update_contracts(); | ||
console.error("[sync] connect error:", exc); | ||
return this.connect(rpcinfo, ipcpath, callback, true); | ||
if (!retry) { | ||
return this.connect(rpcinfo, ipcpath, callback, true); | ||
} | ||
return false; | ||
} | ||
@@ -321,0 +327,0 @@ } |
{ | ||
"name": "ethereumjs-connect", | ||
"version": "0.2.2", | ||
"version": "0.2.3", | ||
"description": "Basic Ethereum connection tasks", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
620101
11746