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

Merge pull request #86 from MetaMask/CallbackRestoreErrors

Call back with wallet restore errors
This commit is contained in:
Dan Finlay 2016-04-01 14:05:05 -07:00
commit a5b8e4448e

View File

@ -227,7 +227,11 @@ IdentityStore.prototype._createIdmgmt = function(password, seed, entropy, cb){
var serializedKeystore = configManager.getWallet()
if (seed) {
keyStore = this._restoreFromSeed(password, seed, derivedKey)
try {
keyStore = this._restoreFromSeed(password, seed, derivedKey)
} catch (e) {
return cb(e)
}
// returning user, recovering from storage
} else if (serializedKeystore) {