1
0
mirror of https://github.com/bitcoin/bips.git synced 2025-09-15 13:51:06 +00:00

Merge pull request #1947 from aso20455/master

BIP328: fix assignment in bytes_to_point function
This commit is contained in:
Jon Atack 2025-09-02 16:57:25 -07:00 committed by GitHub
commit d588494bec
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -83,8 +83,8 @@ def deserialize_point(b: bytes) -> Point:
def bytes_to_point(point_bytes: bytes) -> Point: def bytes_to_point(point_bytes: bytes) -> Point:
header = point_bytes[0] header = point_bytes[0]
if header == 4: if header == 4:
x = point_bytes = point_bytes[1:33] x = point_bytes[1:33]
y = point_bytes = point_bytes[33:65] y = point_bytes[33:65]
return (int(binascii.hexlify(x), 16), int(binascii.hexlify(y), 16)) return (int(binascii.hexlify(x), 16), int(binascii.hexlify(y), 16))
return deserialize_point(point_bytes) return deserialize_point(point_bytes)