Fixed call to map series.
This commit is contained in:
parent
c1056dba47
commit
a63761d0b2
@ -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) {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user