mirror of
https://github.com/bitcoin/bips.git
synced 2025-02-23 23:27:22 +01:00
Fxied typo in taproot_sign_script()
This commit is contained in:
parent
e9e23e474f
commit
32f364c85c
1 changed files with 1 additions and 1 deletions
|
@ -254,7 +254,7 @@ This function returns the witness stack necessary and a <code>sighash</code> fun
|
|||
def taproot_sign_script(internal_pubkey, script_tree, script_num, inputs):
|
||||
info, h = taproot_tree_helper(script_tree)
|
||||
(leaf_version, script), path = info[script_num]
|
||||
_, is_y_square = taproot_tweak_pubkey(internal_pubkey, t)
|
||||
_, is_y_square = taproot_tweak_pubkey(internal_pubkey, h)
|
||||
output_pubkey_tag = 0 if is_y_square else 1
|
||||
pubkey_data = bytes([output_pubkey_tag + leaf_version]) + internal_pubkey
|
||||
return inputs + [script, pubkey_data + path]
|
||||
|
|
Loading…
Add table
Reference in a new issue