Add method to FakeWallet

This commit is contained in:
Ivan Socolsky 2014-09-03 18:06:58 -03:00
commit e9e36020fe

View file

@ -98,6 +98,9 @@ FakeWallet.prototype.getBalance = function(cb) {
return cb(null, this.balance, this.balanceByAddr, this.safeBalance);
};
FakeWallet.prototype.removeTxWithSpentInputs = function (cb) {
};
FakeWallet.prototype.setEnc = function(enc) {
this.enc = enc;
};