diff --git a/lib/server.js b/lib/server.js index eea6bf6..6aa9293 100644 --- a/lib/server.js +++ b/lib/server.js @@ -952,6 +952,7 @@ WalletService.prototype.getTxHistory = function(opts, cb) { }); }; + var now = Math.floor(Date.now() / 1000); return _.map(txs, function(tx) { var inputs = classify(tx.inputs); @@ -979,7 +980,7 @@ WalletService.prototype.getTxHistory = function(opts, cb) { action: action, amount: amount, fees: tx.fees, - time: tx.time, + time: tx.time || now, addressTo: addressTo, confirmations: tx.confirmations, }; @@ -1003,7 +1004,6 @@ WalletService.prototype.getTxHistory = function(opts, cb) { function paginate(txs) { var limited = opts.limit && opts.limit != -1; - if (!opts.minTs && !opts.maxTs && !limited) return; var minTs = opts.minTs || 0; var maxTs = opts.maxTs || Math.ceil(Date.now() / 1000); diff --git a/package.json b/package.json index 48ccc49..3e14898 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "bitcore-wallet-service", "description": "A service for Mutisig HD Bitcoin Wallets", "author": "BitPay Inc", - "version": "0.0.9", + "version": "0.0.10", "keywords": [ "bitcoin", "copay",