mirror of https://github.com/embarklabs/embark.git
hotfix network id comparison string vs number
This commit is contained in:
parent
326a730969
commit
e5c498b59d
|
@ -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'));
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue