mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Merge pull request #5127 from MetaMask/account-tracker-network-change
Bug Fix: Force AccountTracker to update balances on network change
This commit is contained in:
commit
c289baa17a
@ -129,6 +129,7 @@ module.exports = class MetamaskController extends EventEmitter {
|
|||||||
provider: this.provider,
|
provider: this.provider,
|
||||||
blockTracker: this.blockTracker,
|
blockTracker: this.blockTracker,
|
||||||
})
|
})
|
||||||
|
|
||||||
// start and stop polling for balances based on activeControllerConnections
|
// start and stop polling for balances based on activeControllerConnections
|
||||||
this.on('controllerConnectionChanged', (activeControllerConnections) => {
|
this.on('controllerConnectionChanged', (activeControllerConnections) => {
|
||||||
if (activeControllerConnections > 0) {
|
if (activeControllerConnections > 0) {
|
||||||
@ -138,6 +139,11 @@ module.exports = class MetamaskController extends EventEmitter {
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
// ensure accountTracker updates balances after network change
|
||||||
|
this.networkController.on('networkDidChange', () => {
|
||||||
|
this.accountTracker._updateAccounts()
|
||||||
|
})
|
||||||
|
|
||||||
// key mgmt
|
// key mgmt
|
||||||
const additionalKeyrings = [TrezorKeyring, LedgerBridgeKeyring]
|
const additionalKeyrings = [TrezorKeyring, LedgerBridgeKeyring]
|
||||||
this.keyringController = new KeyringController({
|
this.keyringController = new KeyringController({
|
||||||
|
Loading…
Reference in New Issue
Block a user