From fbd1d5354205b7721fec71aa3479326bdce71757 Mon Sep 17 00:00:00 2001 From: Jack Robison Date: Mon, 5 Jul 2021 09:52:12 -0400 Subject: [PATCH] fix --- lbry/wallet/server/block_processor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lbry/wallet/server/block_processor.py b/lbry/wallet/server/block_processor.py index bfcc29e4e..cc9502302 100644 --- a/lbry/wallet/server/block_processor.py +++ b/lbry/wallet/server/block_processor.py @@ -703,7 +703,7 @@ class BlockProcessor: spent_claims = {} for expired_claim_hash, (tx_num, position, name, txi) in expired.items(): if (tx_num, position) not in self.txo_to_claim: - self.db_op_stack.extend(self._spend_claim_txo(txi, spent_claims)) + self._spend_claim_txo(txi, spent_claims) if expired: # do this to follow the same content claim removing pathway as if a claim (possible channel) was abandoned for abandoned_claim_hash, (tx_num, nout, name) in spent_claims.items():