From 07103da04f8e0bb15b344b3ff5518b7c192e1932 Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Mon, 16 Jan 2017 01:28:01 -0800 Subject: [PATCH] chainentry: minor. --- lib/blockchain/chainentry.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/blockchain/chainentry.js b/lib/blockchain/chainentry.js index a4155244..fd5810bf 100644 --- a/lib/blockchain/chainentry.js +++ b/lib/blockchain/chainentry.js @@ -462,7 +462,7 @@ ChainEntry.prototype.fromRaw = function fromRaw(data) { br.seek(-80); this.hash = hash.toString('hex'); - this.version = br.readU32(); // Technically signed + this.version = br.readU32(); this.prevBlock = br.readHash('hex'); this.merkleRoot = br.readHash('hex'); this.ts = br.readU32();