-
Notifications
You must be signed in to change notification settings - Fork 66
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Pypy3 issue with hash160 address #16
Comments
Can you tell me what was the key for which it is happening. Or is it a secret ?? |
hi, |
pypy and pypy3 doesn't support ctypes and finite fields operations. And pure python with ctypes is faster, than pypy. If you want use pypy, use this with pure python scripts or with cffi. |
pypy no work with DLL ! |
Hi there:
Quick question.
I am using this library with pypy3 and seems to work fine with compress and uncompress btc address.
But when try something like that:
mykey = int(key,16)
hash160 = ice.privatekey_to_h160(0, True, mykey).hex()
print(hash160)
I just got only 40 zeros = 0000000000000000000000000000000000000000
Can you spot a solution, thanks!
The text was updated successfully, but these errors were encountered: