From a63761d0b2b72bd0a37c16c8f479b39297be64d0 Mon Sep 17 00:00:00 2001 From: Chris Kleeschulte Date: Thu, 2 Nov 2017 17:41:50 -0400 Subject: [PATCH] Fixed call to map series. --- lib/services/address/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/services/address/index.js b/lib/services/address/index.js index 4da9f46d..2592b842 100644 --- a/lib/services/address/index.js +++ b/lib/services/address/index.js @@ -451,7 +451,7 @@ AddressService.prototype._getAddressHistory = function(address, options, callbac if (mempoolTxs.length <= 0) { return next(); } - async.mapSeries(mempoolTxs, 4, function(tx, next) { + async.mapSeries(mempoolTxs, function(tx, next) { self._transaction.setTxMetaInfo(tx, options, next); }, function(err, txs) { if (err) {