We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d05819e commit d68b399Copy full SHA for d68b399
main/utils/psbt.c
@@ -20,8 +20,8 @@ static bool key_iter_is_supported_taproot(const key_iter* iter, const struct wal
20
return false; // Leaf script present: a script-path spend
21
}
22
// TODO: use the wally merkle root accessor when it is exposed
23
- const uint32_t PSBT_IN_TAP_MERKLE_ROOT = 0x18; // From BIP-174
24
- if (wally_map_get_integer(&input->psbt_fields, PSBT_IN_TAP_MERKLE_ROOT)) {
+ const uint32_t psbt_in_tap_merkle_root = 0x18; // From BIP-174
+ if (wally_map_get_integer(&input->psbt_fields, psbt_in_tap_merkle_root)) {
25
return false; // Merkle root present: script-path present
26
27
} else {
0 commit comments