Fixed delete a wallet using localStorage (not insight)

This commit is contained in:
Gustavo Maximiliano Cortez 2014-11-11 14:36:10 -03:00
parent 3c2e881acd
commit c16b9e4e87
1 changed files with 1 additions and 1 deletions

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]);
};