Fix maxStatement for jshint

This commit is contained in:
Karel Bilek 2016-10-04 18:51:44 +02:00
parent b92d4340a1
commit b4c5ec78ab

View File

@ -1208,7 +1208,7 @@ Bitcoin.prototype._getHeightRangeQuery = function(options, clone) {
* @param {Function} callback
*/
Bitcoin.prototype.getAddressTxids = function(addressArg, options, callback) {
/* jshint maxstatements: 16 */
/* jshint maxstatements: 20 */
var self = this;
var queryMempool = _.isUndefined(options.queryMempool) ? true : options.queryMempool;
var queryMempoolOnly = _.isUndefined(options.queryMempoolOnly) ? false : options.queryMempoolOnly;