1
0
mirror of https://github.com/bitcoin/bips.git synced 2026-03-02 15:43:53 +00:00

Merge pull request #1142 from RCasatta/lift_x

remove int_from_bytes in lift_x call since it is done internally
This commit is contained in:
Luke Dashjr
2021-07-20 18:40:26 +00:00
committed by GitHub

View File

@@ -180,7 +180,7 @@ def taproot_tweak_pubkey(pubkey, h):
t = int_from_bytes(tagged_hash("TapTweak", pubkey + h))
if t >= SECP256K1_ORDER:
raise ValueError
Q = point_add(lift_x(int_from_bytes(pubkey)), point_mul(G, t))
Q = point_add(lift_x(pubkey), point_mul(G, t))
return 0 if has_even_y(Q) else 1, bytes_from_int(x(Q))
def taproot_tweak_seckey(seckey0, h):