1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-23 02:10:12 +01:00

Fix bug where new vaults had no nicknames

This commit is contained in:
Dan Finlay 2016-10-11 15:29:12 -07:00
parent f7361d9654
commit 5c9476e57d

View File

@ -60,6 +60,8 @@ IdentityStore.prototype.createNewVault = function (password, entropy, cb) {
this.configManager.setShowSeedWords(true)
var seedWords = this._idmgmt.getSeed()
this._loadIdentities()
cb(null, seedWords)
})
}