aboutsummaryrefslogtreecommitdiffstats
path: root/app/scripts/lib/idStore.js
diff options
context:
space:
mode:
authorDan Finlay <dan@danfinlay.com>2016-09-13 02:25:30 +0800
committerDan Finlay <dan@danfinlay.com>2016-09-13 02:25:30 +0800
commit4a47f26e8caaea5e85820f0684fdb86ccb43196b (patch)
tree23b054d2d189f22b45559b3dd096369e97501d61 /app/scripts/lib/idStore.js
parente0e38b879f4d8ea367a0ea77be633d0b4d6762fa (diff)
downloadtangerine-wallet-browser-4a47f26e8caaea5e85820f0684fdb86ccb43196b.tar
tangerine-wallet-browser-4a47f26e8caaea5e85820f0684fdb86ccb43196b.tar.gz
tangerine-wallet-browser-4a47f26e8caaea5e85820f0684fdb86ccb43196b.tar.bz2
tangerine-wallet-browser-4a47f26e8caaea5e85820f0684fdb86ccb43196b.tar.lz
tangerine-wallet-browser-4a47f26e8caaea5e85820f0684fdb86ccb43196b.tar.xz
tangerine-wallet-browser-4a47f26e8caaea5e85820f0684fdb86ccb43196b.tar.zst
tangerine-wallet-browser-4a47f26e8caaea5e85820f0684fdb86ccb43196b.zip
Fix keystore reference
Diffstat (limited to 'app/scripts/lib/idStore.js')
-rw-r--r--app/scripts/lib/idStore.js1
1 files changed, 1 insertions, 0 deletions
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()
})