moving torwards fixing tests

This commit is contained in:
Manuel Araoz 2014-08-11 19:29:44 -04:00
commit 10bd5ba6bf
2 changed files with 5 additions and 4 deletions

View file

@ -1,3 +1,6 @@
var Wallet = require('../../js/models/core/Wallet');
var FakeWallet = function() {
this.id = 'testID';
this.balance = 10000;
@ -66,10 +69,7 @@ FakeWallet.prototype.fetchPaymentTx = function(opts, cb) {
};
FakeWallet.prototype.createPaymentTx = function() {
};
FakeWallet.prototype.createPaymentTx = Wallet.prototype.createPaymentTx;
FakeWallet.prototype.getBalance = function(cb) {