Merge pull request #1765 from cmgustavo/bug/delete-wallet-localStorage
Fixed delete a wallet using localStorage (not insight)
This commit is contained in:
commit
81527aa028
1 changed files with 1 additions and 1 deletions
|
|
@ -49,7 +49,7 @@ EncryptedLocalStorage.prototype.setItem = function(name, value, callback) {
|
||||||
};
|
};
|
||||||
|
|
||||||
EncryptedLocalStorage.prototype.removeItem = function(name, callback) {
|
EncryptedLocalStorage.prototype.removeItem = function(name, callback) {
|
||||||
InsightStorage.prototype.removeItem.apply(this, [name, callback]);
|
LocalStorage.prototype.removeItem.apply(this, [name, callback]);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue