Merge pull request #2 from ranchimall/temp

Uncommenting 'getRawBlock' logging
This commit is contained in:
Vivek Teega 2023-01-06 18:45:55 +05:30 committed by GitHub
commit 0a52cc93db
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -186,7 +186,7 @@ BlockService.prototype.getRawBlock = function(hash, callback) {
if (!block || typeof block_raw == "undefined" || typeof block_raw_str_hex == "undefined" || block_raw_str_hex == '') {
return callback();
}
//log.info("Testing getRawBlock " + block_raw_str_hex);
log.info("Testing getRawBlock " + block_raw_str_hex);
callback(null, block.toRaw().toString('hex'));
});
};