From fcaf911671915dfd8f67d29a59e46e3e7efe901e Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Wed, 6 Aug 2014 17:27:07 -0700 Subject: [PATCH] paypro: include merchant data in tx proposal again. --- js/models/core/TxProposal.js | 1 + 1 file changed, 1 insertion(+) diff --git a/js/models/core/TxProposal.js b/js/models/core/TxProposal.js index 3ddeac22e..fb258af51 100644 --- a/js/models/core/TxProposal.js +++ b/js/models/core/TxProposal.js @@ -36,6 +36,7 @@ function TxProposal(opts) { this.sentTxid = opts.sentTxid || null; this.comment = opts.comment || null; this.readonly = opts.readonly || null; + this.merchant = opts.merchant || null; this._sync(); }