From de21e086a9b2060b15eaa0e0f54509e6aff7a0c0 Mon Sep 17 00:00:00 2001 From: Ivan Socolsky Date: Fri, 13 Mar 2015 11:59:09 -0300 Subject: [PATCH] rebase --- test/models/txproposal.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/models/txproposal.js b/test/models/txproposal.js index 58e5dd8..9b864f3 100644 --- a/test/models/txproposal.js +++ b/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]); }); });