From 42ece5bf086749108b95791d7a0ffbd28db52f02 Mon Sep 17 00:00:00 2001 From: Ivan Socolsky Date: Tue, 17 Mar 2015 19:46:01 -0300 Subject: [PATCH] fix jsdoc --- lib/server.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/lib/server.js b/lib/server.js index 56e42da..00347cf 100644 --- a/lib/server.js +++ b/lib/server.js @@ -916,9 +916,10 @@ WalletService.prototype._normalizeTxHistory = function(txs) { * Retrieves all transactions (incoming & outgoing) in the range (maxTs-minTs) * Times are in UNIX EPOCH * - * @param {Object} opts.minTs (defaults to 0) - * @param {Object} opts.maxTs (defaults to now) - * @param {Object} opts.limit + * @param {Object} opts + * @param {Number} opts.minTs (defaults to 0) + * @param {Number} opts.maxTs (defaults to now) + * @param {Number} opts.limit * @returns {TxProposal[]} Transaction proposals, first newer */ WalletService.prototype.getTxHistory = function(opts, cb) {