1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00

Don't bother changing selected accounts since accounts are recovered

This commit is contained in:
Dan Finlay 2016-12-22 13:41:31 -08:00
parent cf3951c9df
commit 291403c13f

View File

@ -427,14 +427,8 @@ module.exports = class MetamaskController {
markAccountsFound(cb) {
this.configManager.setLostAccounts([])
this.keyringController.getAccounts()
.then((accounts) => {
return this.keyringController.setSelectedAccount(accounts[0])
})
.then(() => {
this.sendUpdate()
cb(null, this.getState())
})
this.sendUpdate()
cb(null, this.getState())
}
// Migrate Old Vault If Any
@ -461,11 +455,7 @@ module.exports = class MetamaskController {
// Restore the correct accounts first:
return this.keyringController.restoreKeyring(serialized)
.then(keyring => keyring.getAccounts())
.then((accounts) => {
this.configManager.setSelectedAccount(accounts[0])
return result
})
.then(() => result)
}).then((result) => {