From c87e676ca8cd82e11af23859bb981d61f5aa1ea9 Mon Sep 17 00:00:00 2001 From: Chris Kleeschulte Date: Wed, 18 Oct 2017 19:05:54 -0400 Subject: [PATCH] Changed back to getDetailedTransaction. --- lib/transactions.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/transactions.js b/lib/transactions.js index 3c884a8..4484d94 100644 --- a/lib/transactions.js +++ b/lib/transactions.js @@ -37,7 +37,7 @@ TxController.prototype.transaction = function(req, res, next) { var self = this; var txid = req.params.txid; - this._address.getTransactionWithAddressInfo(txid, {}, function(err, transaction) { + this._transaction.getDetailedTransaction(txid, {}, function(err, transaction) { if (err) { return self.common.handleErrors(err, res); } @@ -272,7 +272,7 @@ TxController.prototype.list = function(req, res) { } async.mapSeries(txids, function(txid, next) { - self._transaction.getTransactionWithAddressInfo(txid, {}, function(err, transaction) { + self._transaction.getDetailedTransaction(txid, {}, function(err, transaction) { if (err) { return next(err); }