Fixed spent status from getAddressHistory.

This commit is contained in:
Chris Kleeschulte 2017-11-22 15:56:36 -05:00
parent 6e20b78b12
commit 0e421de897
No known key found for this signature in database
GPG Key ID: 33195D27EF6BDB7F
2 changed files with 1 additions and 2 deletions

View File

@ -420,7 +420,7 @@ AddressService.prototype._getAddressTxHistory = function(options, callback) {
});
}
self._transaction.getTransaction(id.txid, next);
self._transaction.getDetailedTransaction(id.txid, options, next);
}, callback);

View File

@ -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') {