From b6a64351b33f6df27f6697c1c675143db7e16fb7 Mon Sep 17 00:00:00 2001 From: Vivek Teega Date: Fri, 6 Jan 2023 18:45:03 +0530 Subject: [PATCH] Uncommenting 'getRawBlock' logging --- lib/services/block/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/services/block/index.js b/lib/services/block/index.js index 3e601560..72f9ed25 100644 --- a/lib/services/block/index.js +++ b/lib/services/block/index.js @@ -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')); }); };