From 9aee71e8fd2e03080458c0c988437b0134c5c54b Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Wed, 13 Aug 2014 21:10:55 -0400 Subject: [PATCH] paypro: fix tests for unspent outputs. --- test/test.PayPro.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test.PayPro.js b/test/test.PayPro.js index 288e68762..9e50889a6 100644 --- a/test/test.PayPro.js +++ b/test/test.PayPro.js @@ -139,7 +139,7 @@ describe('PayPro (in Wallet) model', function() { unspentTest[0].scriptPubKey = w.publicKeyRing.getScriptPubKeyHex(1, true, w.publicKey); w.getUnspent = function(cb) { return setTimeout(function() { - return cb(null, unspentTest, []); + return cb(null, unspentTest, unspentTest); }, 1); }; return w;