Skip to content
This repository was archived by the owner on May 23, 2023. It is now read-only.

Commit 59b3339

Browse files
committed
Use libsep256k1 if available
1 parent 466e155 commit 59b3339

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ethereum/transactions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from bitcoin import encode_pubkey, N, P
22
try:
3-
from ecdsa_recover import ecdsa_raw_sign, ecdsa_raw_recover
3+
from c_secp256k1 import ecdsa_raw_sign, ecdsa_raw_recover
44
except ImportError:
55
from bitcoin import ecdsa_raw_sign, ecdsa_raw_recover
66
import rlp

0 commit comments

Comments
 (0)