diff --git a/lib/services/address/index.js b/lib/services/address/index.js index 5761c98d..eea07afd 100644 --- a/lib/services/address/index.js +++ b/lib/services/address/index.js @@ -886,7 +886,7 @@ AddressService.prototype.getAddressHistory = function(addresses, options, callba * totalReceived - satoshis received * totalSpent - satoshis spent * appearances - number of times used in confirmed transactions - * unconfirmedApearances - number of times used in unconfirmed transactions + * unconfirmedAppearances - number of times used in unconfirmed transactions * txids - list of txids (unless noTxList is set) * * @param {String} address @@ -905,11 +905,11 @@ AddressService.prototype.getAddressSummary = function(address, options, callback var inputs; var mempoolInputs; - async.series( + async.parallel( [ function(next) { if(options.noTxList) { - next(); + setImmediate(next); } else { self.getInputs(address, opt, function(err, ins) { inputs = ins;