From c90cca4b20b9084e4d3b0fa712fb3b3f7e38d57a Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Wed, 5 Dec 2018 14:38:35 -0500 Subject: [PATCH] fix #1683 --- lbrynet/extras/wallet/manager.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lbrynet/extras/wallet/manager.py b/lbrynet/extras/wallet/manager.py index 4b2e1b474..632c7dd3b 100644 --- a/lbrynet/extras/wallet/manager.py +++ b/lbrynet/extras/wallet/manager.py @@ -349,7 +349,8 @@ class LbryWalletManager(BaseWalletManager): for txi in tx.inputs: if txi.txo_ref.txo is not None: other_txo = txi.txo_ref.txo - if other_txo.is_claim and other_txo.claim_id == txo.claim_id: + if (other_txo.is_claim or other_txo.script.is_support_claim) \ + and other_txo.claim_id == txo.claim_id: previous = other_txo break assert previous is not None,\