handle invalid claim update

This commit is contained in:
Jack Robison 2021-07-30 14:41:01 -04:00
parent 09bb1ba494
commit 8f9e7f77a7
No known key found for this signature in database
GPG key ID: DF25C68FE0239BB2

View file

@ -478,6 +478,11 @@ class BlockProcessor:
if claim_hash not in spent_claims:
# print(f"\tthis is a wonky tx, contains unlinked claim update {claim_hash.hex()}")
return
if claim_name != spent_claims[claim_hash][2]:
self.logger.warning(
f"{tx_hash[::-1].hex()} contains mismatched name for claim update {claim_hash.hex()}"
)
return
(prev_tx_num, prev_idx, _) = spent_claims.pop(claim_hash)
# print(f"\tupdate {claim_hash.hex()} {tx_hash[::-1].hex()} {txo.amount}")
if (prev_tx_num, prev_idx) in self.txo_to_claim: