We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 782044e + 16909c7 commit edb6876Copy full SHA for edb6876
lib/core/engine.js
@@ -222,6 +222,9 @@ class Engine {
222
if (err) {
223
return cb({name: "Ethereum node (version unknown)", status: 'on'});
224
}
225
+ if (version.indexOf("/") < 0) {
226
+ return cb({name: version, status: 'on'});
227
+ }
228
let nodeName = version.split("/")[0];
229
let versionNumber = version.split("/")[1].split("-")[0];
230
let name = nodeName + " " + versionNumber + " (Ethereum)";
0 commit comments