From c16b9e4e872c448d6d79174a420a086ac4f1f8c5 Mon Sep 17 00:00:00 2001 From: Gustavo Maximiliano Cortez Date: Tue, 11 Nov 2014 14:36:10 -0300 Subject: [PATCH] Fixed delete a wallet using localStorage (not insight) --- js/plugins/EncryptedLocalStorage.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/plugins/EncryptedLocalStorage.js b/js/plugins/EncryptedLocalStorage.js index 1cf2c3af2..89c104cab 100644 --- a/js/plugins/EncryptedLocalStorage.js +++ b/js/plugins/EncryptedLocalStorage.js @@ -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]); };