mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
Merge pull request #86 from MetaMask/CallbackRestoreErrors
Call back with wallet restore errors
This commit is contained in:
commit
a5b8e4448e
@ -227,7 +227,11 @@ IdentityStore.prototype._createIdmgmt = function(password, seed, entropy, cb){
|
|||||||
var serializedKeystore = configManager.getWallet()
|
var serializedKeystore = configManager.getWallet()
|
||||||
|
|
||||||
if (seed) {
|
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
|
// returning user, recovering from storage
|
||||||
} else if (serializedKeystore) {
|
} else if (serializedKeystore) {
|
||||||
|
Loading…
Reference in New Issue
Block a user