mirror of
https://github.com/embarklabs/embark.git
synced 2025-02-19 17:14:40 +00:00
hotfix network id comparison string vs number
This commit is contained in:
parent
00bb7a0de0
commit
84264b2087
@ -71,7 +71,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…
x
Reference in New Issue
Block a user