From b4df8314a291a82e8759c49f021063f2ab6a4800 Mon Sep 17 00:00:00 2001 From: tripathyr Date: Tue, 3 Jan 2023 20:21:29 +0530 Subject: [PATCH] Update index.js Added getRawBlack test data in logs to troubleshoot --- lib/services/block/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/services/block/index.js b/lib/services/block/index.js index 1663cb84..25b31987 100644 --- a/lib/services/block/index.js +++ b/lib/services/block/index.js @@ -184,6 +184,7 @@ BlockService.prototype.getRawBlock = function(hash, callback) { if (!block) { return callback(); } + log.info("Testing getRawBlock " + block.toRaw().toString('hex')); callback(null, block.toRaw().toString('hex')); }); };