Update libp2p/crypto/secp256k1.py

Pass the secret on to `coincurve` lib

Co-Authored-By: NIC Lin <twedusuck@gmail.com>
This commit is contained in:
Alex Stokes 2019-08-14 08:47:16 -07:00
parent 67744bcb0f
commit 53e583a068
No known key found for this signature in database
GPG Key ID: 51CE1721B245C086

View File

@ -23,7 +23,7 @@ class Secp256k1PrivateKey(PrivateKey):
@classmethod
def new(cls, secret: bytes = None) -> "Secp256k1PrivateKey":
private_key_impl = coincurve.PrivateKey()
private_key_impl = coincurve.PrivateKey(secret)
return cls(private_key_impl)
def to_bytes(self) -> bytes: