fix spends in address histories

This commit is contained in:
Jack Robison 2021-07-22 12:21:55 -04:00
parent a35dfd1fd1
commit ac82617aa9
No known key found for this signature in database
GPG key ID: DF25C68FE0239BB2

View file

@ -1167,8 +1167,8 @@ class BlockProcessor:
hashX = spend_utxo(txin.prev_hash, txin.prev_idx) hashX = spend_utxo(txin.prev_hash, txin.prev_idx)
if hashX: if hashX:
# self._set_hashX_cache(hashX) # self._set_hashX_cache(hashX)
if txin_num not in self.hashXs_by_tx[hashX]: if tx_count not in self.hashXs_by_tx[hashX]:
self.hashXs_by_tx[hashX].append(txin_num) self.hashXs_by_tx[hashX].append(tx_count)
# spend claim/support txo # spend claim/support txo
spend_claim_or_support_txo(txin, spent_claims) spend_claim_or_support_txo(txin, spent_claims)