From 1c7d1ed34f51643ba4596693421383c3ff5af763 Mon Sep 17 00:00:00 2001 From: Interchained Date: Mon, 4 Jan 2021 13:53:47 -0500 Subject: [PATCH] Update pool.js --- lib/pool.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/pool.js b/lib/pool.js index 69dedbe..90fd7f4 100644 --- a/lib/pool.js +++ b/lib/pool.js @@ -282,7 +282,7 @@ BlockTemplate.prototype = { nextBlob: function (index) { this.buffer.writeUInt32BE(++this.extraNonce, this.reserveOffset); if (mergedMining && this.childBlockTemplate) { - return utils.cnUtil.convert_blob(this.buffer, cnBlobType, this.childBlockTemplate.buffer).toString('hex') + return utils.cnUtil.convert_blob(this.buffer, cnBlobType, this.childBlockTemplate.buffer).toString('hex'); } return utils.cnUtil.convert_blob(this.buffer, cnBlobType).toString('hex'); },