WIP wallet working again
This commit is contained in:
parent
fcf5b13af2
commit
a187726fca
6 changed files with 29 additions and 19 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue