This commit is contained in:
sairajzero 2023-01-28 15:49:57 +05:30
parent aa5d986217
commit 99a96d3f34

View File

@ -793,7 +793,7 @@ AddressService.prototype._streamAddressSummary = function(address, options, stre
txIdTransformStream._transform = function(chunk, enc, cb) {
var txInfo = self._encoding.decodeAddressIndexKey(chunk);
self._db.get(chunk, (err, data) => console.debug(data)); //test-check
self._db.get(chunk, (err, data) => console.debug(data, data.length, data.toString())); //test-check
q.push({ txid: txInfo.txid, height: txInfo.height }, process_chunk);
cb();