mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-11-10 22:18:54 +01:00
wallet: add taproot support to external signer
This commit is contained in:
@@ -81,6 +81,9 @@ bool ExternalSigner::SignTransaction(PartiallySignedTransaction& psbtx, std::str
|
||||
for (const auto& entry : input.hd_keypaths) {
|
||||
if (parsed_m_fingerprint == MakeUCharSpan(entry.second.fingerprint)) return true;
|
||||
}
|
||||
for (const auto& entry : input.m_tap_bip32_paths) {
|
||||
if (parsed_m_fingerprint == MakeUCharSpan(entry.second.second.fingerprint)) return true;
|
||||
}
|
||||
return false;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user