Skip to content

Commit

Permalink
Fixed spent status from getAddressHistory.
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Kleeschulte committed Nov 22, 2017
1 parent 6e20b78 commit 0e421de
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion lib/services/address/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ AddressService.prototype._getAddressTxHistory = function(options, callback) {
});
}

self._transaction.getTransaction(id.txid, next);
self._transaction.getDetailedTransaction(id.txid, options, next);

}, callback);

Expand Down
1 change: 0 additions & 1 deletion lib/services/transaction/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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') {
Expand Down

0 comments on commit 0e421de

Please sign in to comment.