diff --git a/lib/services/address/index.js b/lib/services/address/index.js index f5da7307..71901e4c 100644 --- a/lib/services/address/index.js +++ b/lib/services/address/index.js @@ -420,7 +420,7 @@ AddressService.prototype._getAddressTxHistory = function(options, callback) { }); } - self._transaction.getTransaction(id.txid, next); + self._transaction.getDetailedTransaction(id.txid, options, next); }, callback); diff --git a/lib/services/transaction/index.js b/lib/services/transaction/index.js index e0867202..83bf40a5 100644 --- a/lib/services/transaction/index.js +++ b/lib/services/transaction/index.js @@ -16,7 +16,6 @@ function TransactionService(options) { this._header = this.node.services.header; this._p2p = this.node.services.p2p; this._timestamp = this.node.services.timestamp; - this._address = this.node.services.address; this._network = this.node.network; if (this._network === 'livenet') {