mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 02:10:12 +01:00
Merge branch 'dev' into failing-tests
This commit is contained in:
commit
c695d54b01
@ -117,7 +117,6 @@ module.exports = class KeyringController extends EventEmitter {
|
||||
migrateAndGetKey (password) {
|
||||
let key
|
||||
const shouldMigrate = !!this.configManager.getWallet() && !this.configManager.getVault()
|
||||
|
||||
return this.loadKey(password)
|
||||
.then((derivedKey) => {
|
||||
key = derivedKey
|
||||
@ -128,6 +127,7 @@ module.exports = class KeyringController extends EventEmitter {
|
||||
if (serialized && shouldMigrate) {
|
||||
const keyring = this.restoreKeyring(serialized)
|
||||
this.keyrings.push(keyring)
|
||||
this.persistAllKeyrings()
|
||||
this.configManager.setSelectedAccount(keyring.getAccounts()[0])
|
||||
}
|
||||
return key
|
||||
|
@ -37,11 +37,11 @@ module.exports = class IdentityStoreMigrator {
|
||||
|
||||
serializeVault () {
|
||||
const mnemonic = this.idStore._idmgmt.getSeed()
|
||||
const n = this.idStore._getAddresses().length
|
||||
const numberOfAccounts = this.idStore._getAddresses().length
|
||||
|
||||
return {
|
||||
type: 'HD Key Tree',
|
||||
data: { mnemonic, n },
|
||||
data: { mnemonic, numberOfAccounts },
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user