Merge pull request #1652 from eordano/fix/missingVar

Add missing variable declaration
This commit is contained in:
Matias Alejo Garcia 2014-10-31 15:52:24 -03:00
commit 260393b6be

View file

@ -162,6 +162,7 @@ Compatibility.readWalletPre8 = function(walletId, password, cb) {
var self = this;
var passphrase = cryptoUtils.kdf(password);
var obj = {};
var key;
for (key in localStorage) {
if (key.indexOf('wallet::' + walletId) !== -1) {