Browse Source

rebase

activeAddress
Ivan Socolsky 10 years ago
parent
commit
de21e086a9
  1. 4
      test/models/txproposal.js

4
test/models/txproposal.js

@ -26,11 +26,11 @@ describe('TXProposal', function() {
var txp = TXP.fromObj(aTXP());
txp.outputOrder = [0, 1];
var t = txp._getBitcoreTx();
var t = txp.getBitcoreTx();
t.getChangeOutput().should.deep.equal(t.outputs[1]);
txp.outputOrder = [1, 0];
var t = txp._getBitcoreTx();
var t = txp.getBitcoreTx();
t.getChangeOutput().should.deep.equal(t.outputs[0]);
});
});

Loading…
Cancel
Save