hotfix network id comparison string vs number

This commit is contained in:
Jonathan Rainville 2018-08-07 15:04:58 -04:00 committed by Iuri Matias
parent 326a730969
commit e5c498b59d
1 changed files with 1 additions and 1 deletions

View File

@ -80,7 +80,7 @@ class BlockchainConnector {
if (!networkId && constants.blockchain.networkIds[self.blockchainConfig.networkType]) {
networkId = constants.blockchain.networkIds[self.blockchainConfig.networkType];
}
if (id !== networkId) {
if (id.toString() !== networkId.toString()) {
self.logger.warn(__('Connected to a blockchain node on network {{realId}} while your config specifies {{configId}}', {realId: id, configId: networkId}));
self.logger.warn(__('Make sure you started the right blockchain node'));
}