mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Merge pull request #5892 from MetaMask/fix-net-version-race-condition
Fix race condition in network controller lookup() method.
This commit is contained in:
commit
575fb607c3
@ -105,12 +105,18 @@ module.exports = class NetworkController extends EventEmitter {
|
|||||||
if (!this._provider) {
|
if (!this._provider) {
|
||||||
return log.warn('NetworkController - lookupNetwork aborted due to missing provider')
|
return log.warn('NetworkController - lookupNetwork aborted due to missing provider')
|
||||||
}
|
}
|
||||||
var { type } = this.providerStore.getState()
|
const { type } = this.providerStore.getState()
|
||||||
const ethQuery = new EthQuery(this._provider)
|
const ethQuery = new EthQuery(this._provider)
|
||||||
|
const initialNetwork = this.getNetworkState()
|
||||||
ethQuery.sendAsync({ method: 'net_version' }, (err, network) => {
|
ethQuery.sendAsync({ method: 'net_version' }, (err, network) => {
|
||||||
if (err) return this.setNetworkState('loading')
|
const currentNetwork = this.getNetworkState()
|
||||||
log.info('web3.getNetwork returned ' + network)
|
if (initialNetwork === currentNetwork) {
|
||||||
this.setNetworkState(network, type)
|
if (err) {
|
||||||
|
return this.setNetworkState('loading')
|
||||||
|
}
|
||||||
|
log.info('web3.getNetwork returned ' + network)
|
||||||
|
this.setNetworkState(network, type)
|
||||||
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user