This commit is contained in:
sairajzero 2023-01-28 01:52:55 +05:30
parent 69a829a6eb
commit 648d627149

View File

@ -777,7 +777,8 @@ AddressService.prototype._streamAddressSummary = function(address, options, stre
next();
},
// stream the rest of the confirmed txids out of the address index
async function(next) {
function(next) {
console.debug("NEXT@781", next);
var txIdTransformStream = new Transform({ objectMode: true });
@ -807,7 +808,7 @@ AddressService.prototype._streamAddressSummary = function(address, options, stre
txidStream.pipe(txIdTransformStream);
q.drain = function(){
console.debug("Q-DRAIN");
console.debug("Q-DRAIN", next);
next();
};