fix typo.

This commit is contained in:
Christopher Jeffrey 2014-12-02 02:59:37 -08:00
parent aa782e0ee0
commit bf80830811

View File

@ -478,7 +478,7 @@ Bitcoin.prototype.getAddrTransactions = function(address, callback) {
} }
var txs = []; var txs = [];
return utils.forEach(records, function(record, next) { return utils.forEach(records, function(record, next) {
var block = record.block; var block = record.blockhash;
var txid = record.txid; var txid = record.txid;
var index = record.blockindex; var index = record.blockindex;
if (txid == null) return next(); if (txid == null) return next();