paypro: display ack memo on notification.

This commit is contained in:
Christopher Jeffrey 2014-08-04 12:17:40 -07:00 committed by Manuel Araoz
commit e1478fefbf
2 changed files with 7 additions and 0 deletions

View file

@ -1082,6 +1082,10 @@ Wallet.prototype.receivePaymentRequestACK = function(tx, txp, ack, cb) {
tx = ptx;
}
txp.merchant.ack = {
memo: memo
};
var txid = tx.getHash().toString('hex');
return cb(txid, txp.merchant);
};