From 05ddd43dfcd51ce781eda9c51066ec9b3b780948 Mon Sep 17 00:00:00 2001 From: Chris Kleeschulte Date: Fri, 13 Jan 2017 14:45:36 -0500 Subject: [PATCH] Fixed options on getUtxos --- lib/services/wallet-api/index.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/services/wallet-api/index.js b/lib/services/wallet-api/index.js index d3b3c649..1da0615f 100644 --- a/lib/services/wallet-api/index.js +++ b/lib/services/wallet-api/index.js @@ -66,6 +66,10 @@ WalletService.prototype._endpointUTXOs = function() { // TODO: get the height of the tip //var height = tip; var height = null; + + var options = { + queryMempool: queryMempool + }; self._getUtxos(walletId, height, options, function(err, utxos) { if(err) { return utils.sendError(err);