Merge pull request #1765 from cmgustavo/bug/delete-wallet-localStorage

Fixed delete a wallet using localStorage (not insight)
This commit is contained in:
Matias Alejo Garcia 2014-11-11 14:45:38 -03:00
commit 81527aa028

View file

@ -49,7 +49,7 @@ EncryptedLocalStorage.prototype.setItem = function(name, value, callback) {
};
EncryptedLocalStorage.prototype.removeItem = function(name, callback) {
InsightStorage.prototype.removeItem.apply(this, [name, callback]);
LocalStorage.prototype.removeItem.apply(this, [name, callback]);
};