Address History: Docs for "start" and "end" arguments

This commit is contained in:
Braydon Fuller 2015-09-14 16:28:34 -04:00
parent a80b58e004
commit 87a9163743
1 changed files with 2 additions and 2 deletions

View File

@ -738,8 +738,8 @@ AddressService.prototype.isSpent = function(output, queryMempool, callback) {
* @param {Object} options - The options to limit the query
* @param {Number} [options.from] - The pagination "from" index
* @param {Number} [options.to] - The pagination "to" index
* @param {Number} [options.start] - The beginning block height
* @param {Number} [options.end] - The ending block height
* @param {Number} [options.start] - The beginning block height (e.g. 1500 the most recent block height).
* @param {Number} [options.end] - The ending block height (e.g. 0 the older block height, results are inclusive).
* @param {Boolean} [options.queryMempool] - Include the mempool in the query
* @param {Function} callback
*/