Skip to content

Commit

Permalink
Use libsep256k1 if available
Browse files Browse the repository at this point in the history
  • Loading branch information
heikoheiko committed Oct 9, 2015
1 parent 466e155 commit 59b3339
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ethereum/transactions.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from bitcoin import encode_pubkey, N, P
try:
from ecdsa_recover import ecdsa_raw_sign, ecdsa_raw_recover
from c_secp256k1 import ecdsa_raw_sign, ecdsa_raw_recover
except ImportError:
from bitcoin import ecdsa_raw_sign, ecdsa_raw_recover
import rlp
Expand Down

0 comments on commit 59b3339

Please sign in to comment.