1
0

wallet: can_sign should return False for a swap claim tx, because it is handled by txbatcher

This commit is contained in:
ThomasV
2025-03-21 16:31:11 +01:00
parent 91a72646ba
commit 45b5bdca48

View File

@@ -2591,8 +2591,6 @@ class Abstract_Wallet(ABC, Logger, EventListener):
for k in self.get_keystores():
if k.can_sign_txin(txin):
return True
if self.get_swaps_by_claim_tx(tx):
return True
return False
def add_output_info(self, txout: PartialTxOutput, *, only_der_suffix: bool = False) -> None: