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')); }); };