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:
parent
67744bcb0f
commit
53e583a068
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue
Block a user