From 08936c89709f9e177b165c0aacb63c97b3c1e674 Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Tue, 28 Feb 2017 10:43:05 -0800 Subject: [PATCH] mempool: fix countDescendants (again). --- lib/mempool/mempool.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/mempool/mempool.js b/lib/mempool/mempool.js index 17dd54b8..85467c3b 100644 --- a/lib/mempool/mempool.js +++ b/lib/mempool/mempool.js @@ -1121,7 +1121,7 @@ Mempool.prototype._countDescendants = function countDescendants(entry, count, se if (!next) continue; - nhash = next.hash; + nhash = next.tx.hash('hex'); if (set[nhash]) continue;