paypro: fix some more errors.

This commit is contained in:
Christopher Jeffrey 2014-07-29 11:52:59 -07:00 committed by Manuel Araoz
commit 8d96b446df

View file

@ -979,7 +979,6 @@ Wallet.prototype.sendPaymentTx = function(ntxid, options, cb) {
responseType: 'arraybuffer' responseType: 'arraybuffer'
}) })
.success(function(data, status, headers, config) { .success(function(data, status, headers, config) {
if (err) return cb(err);
data = PayPro.PaymentACK.decode(data); data = PayPro.PaymentACK.decode(data);
var ack = new PayPro(); var ack = new PayPro();
ack = ack.makePaymentACK(data); ack = ack.makePaymentACK(data);
@ -1007,7 +1006,7 @@ Wallet.prototype.receivePaymentRequestACK = function(tx, txp, ack, cb) {
tx = ptx; tx = ptx;
} }
var txid = tx.getHash().toString('hex'); var txid = tx.getHash().toString('hex');
return cb(txid, txp.pr.ca); return cb(txid, txp.merchant.pr.ca);
}; };
Wallet.prototype.createPaymentTxSync = function(options, merchantData, unspent) { Wallet.prototype.createPaymentTxSync = function(options, merchantData, unspent) {