From 4a47f26e8caaea5e85820f0684fdb86ccb43196b Mon Sep 17 00:00:00 2001 From: Dan Finlay Date: Mon, 12 Sep 2016 11:25:30 -0700 Subject: Fix keystore reference --- app/scripts/lib/idStore.js | 1 + 1 file changed, 1 insertion(+) (limited to 'app/scripts/lib/idStore.js') diff --git a/app/scripts/lib/idStore.js b/app/scripts/lib/idStore.js index 4160466e1..d33a67387 100644 --- a/app/scripts/lib/idStore.js +++ b/app/scripts/lib/idStore.js @@ -449,6 +449,7 @@ IdentityStore.prototype.tryPassword = function (password, cb) { const isCorrect = keyStore.isDerivedKeyCorrect(pwDerivedKey) if (!isCorrect) return cb(new Error('Lightwallet - password incorrect')) + this._keyStore = keyStore this._createIdMgmt(pwDerivedKey) cb() }) -- cgit