Update index.js

This commit is contained in:
sairajzero 2023-01-28 02:57:07 +05:30
parent 113a12aaf4
commit 2870fe8aa3

View File

@ -786,7 +786,10 @@ AddressService.prototype._streamAddressSummary = function(address, options, stre
});
txIdTransformStream.on('end', function() {
q.drain = next;
q.drain = (e, d) => {
console.debug("Q-DRAIN", e, d)
next();
};
q.resume();
});