From b4c5ec78ab9c5b4c52f698cb4c88e7e6fcfd1397 Mon Sep 17 00:00:00 2001 From: Karel Bilek Date: Tue, 4 Oct 2016 18:51:44 +0200 Subject: [PATCH] Fix maxStatement for jshint --- lib/services/bitcoind.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/services/bitcoind.js b/lib/services/bitcoind.js index ab8e3de5..21480251 100644 --- a/lib/services/bitcoind.js +++ b/lib/services/bitcoind.js @@ -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;