From 5b19f2993ef42644c867f58c0f706499ce903d73 Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Thu, 25 Sep 2014 13:50:47 -0700 Subject: [PATCH] wrap tx properly again. --- lib/bitcoind.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/bitcoind.js b/lib/bitcoind.js index dee281e8..c01a1930 100644 --- a/lib/bitcoind.js +++ b/lib/bitcoind.js @@ -186,6 +186,7 @@ Bitcoin.prototype._pollBlocks = function() { self.emit('block', block); return utils.forEach(block.tx, function(tx, nextTx) { + tx = bitcoin.tx(tx); self.emit('tx', tx); return setImmediate(function() { return nextTx();