|
|
@ -117,7 +117,6 @@ module.exports = class KeyringController extends EventEmitter { |
|
|
|
migrateAndGetKey (password) { |
|
|
|
migrateAndGetKey (password) { |
|
|
|
let key |
|
|
|
let key |
|
|
|
const shouldMigrate = !!this.configManager.getWallet() && !this.configManager.getVault() |
|
|
|
const shouldMigrate = !!this.configManager.getWallet() && !this.configManager.getVault() |
|
|
|
|
|
|
|
|
|
|
|
return this.loadKey(password) |
|
|
|
return this.loadKey(password) |
|
|
|
.then((derivedKey) => { |
|
|
|
.then((derivedKey) => { |
|
|
|
key = derivedKey |
|
|
|
key = derivedKey |
|
|
@ -128,6 +127,7 @@ module.exports = class KeyringController extends EventEmitter { |
|
|
|
if (serialized && shouldMigrate) { |
|
|
|
if (serialized && shouldMigrate) { |
|
|
|
const keyring = this.restoreKeyring(serialized) |
|
|
|
const keyring = this.restoreKeyring(serialized) |
|
|
|
this.keyrings.push(keyring) |
|
|
|
this.keyrings.push(keyring) |
|
|
|
|
|
|
|
this.persistAllKeyrings() |
|
|
|
this.configManager.setSelectedAccount(keyring.getAccounts()[0]) |
|
|
|
this.configManager.setSelectedAccount(keyring.getAccounts()[0]) |
|
|
|
} |
|
|
|
} |
|
|
|
return key |
|
|
|
return key |
|
|
|