move towards fixing karma tests

This commit is contained in:
Manuel Araoz 2014-08-11 18:00:19 -04:00
parent e2ab9dd0c8
commit d43e7943d3
1 changed files with 8 additions and 2 deletions

View File

@ -55,8 +55,14 @@ FakeWallet.prototype.isReady = function() {
return true;
};
FakeWallet.prototype.fetchPaymentTx = function() {
FakeWallet.prototype.fetchPaymentTx = function(opts, cb) {
cb(null, {
pr: {
pd: {
expires: 12
}
}
});
};