WIP wallet working again

This commit is contained in:
Matias Alejo Garcia 2014-04-15 10:22:50 -03:00
commit a187726fca
6 changed files with 29 additions and 19 deletions

View file

@ -6,15 +6,15 @@ function Storage() {
}
// get value by key
Storage.prototype.get = function(k) {
Storage.prototype.get = function(walletId,k) {
};
// set value for key
Storage.prototype.set = function(k,v) {
Storage.prototype.set = function(walletId,v) {
};
// remove value for key
Storage.prototype.remove = function(k) {
Storage.prototype.remove = function(walletId, k) {
};
// remove all values