paypro: prepare for txp refactor. will stay reverted until #1001 is merged.

This commit is contained in:
Christopher Jeffrey 2014-08-06 11:50:49 -07:00 committed by Manuel Araoz
commit 3ade672561
3 changed files with 16 additions and 19 deletions

View file

@ -782,7 +782,7 @@ describe('PayPro (in Wallet) model', function() {
merchantData.raw = pr.serialize().toString('hex');
var myId = w.getMyCopayerId();
var txp = w.txProposals.txps[ntxid];
var txp = w.txProposals.get(ntxid);
should.exist(txp);
should.exist(txp.signedBy[myId]);
should.not.exist(txp.rejectedBy[myId]);
@ -809,7 +809,7 @@ describe('PayPro (in Wallet) model', function() {
amount.low = 2;
var myId = w.getMyCopayerId();
var txp = w.txProposals.txps[ntxid];
var txp = w.txProposals.get(ntxid);
should.exist(txp);
should.exist(txp.signedBy[myId]);
should.not.exist(txp.rejectedBy[myId]);
@ -830,12 +830,12 @@ describe('PayPro (in Wallet) model', function() {
should.exist(merchantData);
// Tamper with payment request in its abstract form:
var txp = w.txProposals.txps[ntxid];
var txp = w.txProposals.get(ntxid);
var tx = txp.builder.tx || txp.builder.build();
tx.outs[0].v = new Buffer([2, 0, 0, 0, 0, 0, 0, 0]);
var myId = w.getMyCopayerId();
var txp = w.txProposals.txps[ntxid];
var txp = w.txProposals.get(ntxid);
should.exist(txp);
should.exist(txp.signedBy[myId]);
should.not.exist(txp.rejectedBy[myId]);
@ -856,7 +856,7 @@ describe('PayPro (in Wallet) model', function() {
should.exist(merchantData);
var myId = w.getMyCopayerId();
var txp = w.txProposals.txps[ntxid];
var txp = w.txProposals.get(ntxid);
should.exist(txp);
should.exist(txp.signedBy[myId]);
should.not.exist(txp.rejectedBy[myId]);