1
0

Merge pull request #9082 from SomberNight/202404_tx_taproot

transaction.py: impl taproot key-spends
This commit is contained in:
ThomasV
2024-06-17 12:49:32 +02:00
committed by GitHub
11 changed files with 978 additions and 152 deletions

View File

@@ -118,7 +118,7 @@ class KeyStore(Logger, ABC):
return {}
keypairs = {}
for pubkey in txin.pubkeys:
if pubkey in txin.part_sigs:
if pubkey in txin.sigs_ecdsa:
# this pubkey already signed
continue
derivation = self.get_pubkey_derivation(pubkey, txin)