Fixed call to map series.

This commit is contained in:
Chris Kleeschulte 2017-11-02 17:41:50 -04:00
parent c1056dba47
commit a63761d0b2
No known key found for this signature in database
GPG Key ID: 33195D27EF6BDB7F

View File

@ -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) {