mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-06-05 10:42:13 +02: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