1
0
Fork 0
mirror of https://github.com/bitcoin/bips.git synced 2025-02-25 16:04:13 +01:00

Internal pubkey calculation fixed in taproot_tweak_pubkey()

This commit is contained in:
codeShark149 2019-11-06 23:48:29 +05:30
parent 230f6cb734
commit de82b3ad26

View file

@ -189,7 +189,7 @@ def taproot_tweak_pubkey(pubkey, h):
t = int_from_bytes(tagged_hash("TapTweak", pubkey + h))
if t >= SECP256K1_ORDER:
raise ValueError
Q = point_mul(point(pubkey), t)
Q = point_add(point(pubkey), point_mul(G, t))
return bytes_from_int(x(Q)), has_square_y(Q)
def taproot_tweak_seckey(seckey0, h):