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