From bf808308113b4535f8be015e81e2ae167c2dd310 Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Tue, 2 Dec 2014 02:59:37 -0800 Subject: [PATCH] fix typo. --- lib/bitcoind.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/bitcoind.js b/lib/bitcoind.js index 9b5de3d5..73afd89c 100644 --- a/lib/bitcoind.js +++ b/lib/bitcoind.js @@ -478,7 +478,7 @@ Bitcoin.prototype.getAddrTransactions = function(address, callback) { } var txs = []; return utils.forEach(records, function(record, next) { - var block = record.block; + var block = record.blockhash; var txid = record.txid; var index = record.blockindex; if (txid == null) return next();