Fixed options on getUtxos

This commit is contained in:
Chris Kleeschulte 2017-01-13 14:45:36 -05:00
parent af2b75c0d0
commit 05ddd43dfc

View File

@ -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);