make my code work with the latest interface changes

...to Wallet and WalletFactory
This commit is contained in:
Ryan X. Charles 2014-04-16 21:02:53 -03:00
commit 96a6203bb0
7 changed files with 37 additions and 42 deletions

View file

@ -23,4 +23,8 @@ FakeStorage.prototype.clear = function() {
delete this['storage'];
}
FakeStorage.prototype.getWalletIds = function() {
return [];
};
module.exports = require('soop')(FakeStorage);