fix typo.

This commit is contained in:
Christopher Jeffrey 2014-12-02 02:59:37 -08:00
parent aa782e0ee0
commit bf80830811
1 changed files with 1 additions and 1 deletions

View File

@ -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();