Skip to content

Commit

Permalink
fix typing
Browse files Browse the repository at this point in the history
  • Loading branch information
ChihChengLiang committed May 11, 2019
1 parent 7404aa0 commit 7a66b18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py_ecc/bls/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ def G1_to_pubkey(pt: G1Uncompressed) -> BLSPubkey:


def pubkey_to_G1(pubkey: BLSPubkey) -> G1Uncompressed:
z = big_endian_to_int(pubkey)
z = G1Compressed(big_endian_to_int(pubkey))
return decompress_G1(z)

#
Expand Down

0 comments on commit 7a66b18

Please sign in to comment.