From d831d36835be4dbd8784d9ca6647240022b934ab Mon Sep 17 00:00:00 2001 From: Sai Raj <39055732+sairajzero@users.noreply.github.com> Date: Wed, 4 Jan 2023 13:28:23 +0530 Subject: [PATCH] Commenting out '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 72f9ed25..3e601560 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')); }); };