diff options
author | Dan Finlay <dan@danfinlay.com> | 2016-09-13 02:25:30 +0800 |
---|---|---|
committer | Dan Finlay <dan@danfinlay.com> | 2016-09-13 02:25:30 +0800 |
commit | 4a47f26e8caaea5e85820f0684fdb86ccb43196b (patch) | |
tree | 23b054d2d189f22b45559b3dd096369e97501d61 /app | |
parent | e0e38b879f4d8ea367a0ea77be633d0b4d6762fa (diff) | |
download | tangerine-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')
-rw-r--r-- | app/scripts/lib/idStore.js | 1 |
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() }) |