diff --git a/lib/modules/blockchain_connector/index.js b/lib/modules/blockchain_connector/index.js index ce179cce..8d81e48c 100644 --- a/lib/modules/blockchain_connector/index.js +++ b/lib/modules/blockchain_connector/index.js @@ -140,7 +140,7 @@ class BlockchainConnector { self.web3._requestManager.send({method: 'web3_clientVersion', params: []}, (err, version) => { if (err) { self.isWeb3Ready = false; - return next(null, {name: "Ethereum node (version unknown)", status: 'on'}); + return next(null, {name: "Ethereum node not found", status: 'off'}); } if (version.indexOf("/") < 0) { self.events.emit(WEB3_READY);