1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-22 18:00:18 +01:00

remove BlacklistController from disk state

This commit is contained in:
frankiebee 2018-01-30 14:01:28 -08:00
parent 5f2d8eb5d2
commit f13ad6bd6a
2 changed files with 2 additions and 6 deletions

View File

@ -86,9 +86,7 @@ module.exports = class MetamaskController extends EventEmitter {
}) })
this.infuraController.scheduleInfuraNetworkCheck() this.infuraController.scheduleInfuraNetworkCheck()
this.blacklistController = new BlacklistController({ this.blacklistController = new BlacklistController()
initState: initState.BlacklistController,
})
this.blacklistController.scheduleUpdates() this.blacklistController.scheduleUpdates()
// rpc provider // rpc provider
@ -200,9 +198,6 @@ module.exports = class MetamaskController extends EventEmitter {
this.networkController.store.subscribe((state) => { this.networkController.store.subscribe((state) => {
this.store.updateState({ NetworkController: state }) this.store.updateState({ NetworkController: state })
}) })
this.blacklistController.store.subscribe((state) => {
this.store.updateState({ BlacklistController: state })
})
this.recentBlocksController.store.subscribe((state) => { this.recentBlocksController.store.subscribe((state) => {
this.store.updateState({ RecentBlocks: state }) this.store.updateState({ RecentBlocks: state })
}) })

View File

@ -31,4 +31,5 @@ module.exports = [
require('./018'), require('./018'),
require('./019'), require('./019'),
require('./020'), require('./020'),
require('./021'),
] ]