From 219a513771118bd0a38108e4a993eb98b3764976 Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Thu, 25 Sep 2014 14:12:43 -0700 Subject: [PATCH] no longer debug hex output. --- lib/bitcoind.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lib/bitcoind.js b/lib/bitcoind.js index 310f6202..7560464c 100644 --- a/lib/bitcoind.js +++ b/lib/bitcoind.js @@ -336,10 +336,6 @@ function Transaction(data) { this.vout = data.vout || []; this.nLockTime = data.nLockTime || data.locktime || 0; - if (data.hex) { - this._hex = data.hex; - } - Object.keys(data).forEach(function(key) { if (!self[key]) { self[key] = data[key];