From d7b1770e5a0a02b5c0f81499d89c527c233b37ab Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Mon, 28 Jul 2014 00:06:03 -0700 Subject: [PATCH] paypro: add merchant prop to tx proposal. --- js/models/core/Wallet.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/js/models/core/Wallet.js b/js/models/core/Wallet.js index efb01d057..24289b2ff 100644 --- a/js/models/core/Wallet.js +++ b/js/models/core/Wallet.js @@ -1036,7 +1036,8 @@ Wallet.prototype.createPaymentTxSync = function(options, outputs, unspent) { creator: myId, createdTs: now, builder: b, - comment: options.memo + comment: options.memo, + merchant: options.uri }; var ntxid = this.txProposals.add(data);