do not import dns on android

This commit is contained in:
ThomasV 2015-08-18 12:15:56 +02:00
parent 3f1e4ae3b1
commit f583fcfedb
2 changed files with 3 additions and 1 deletions

View file

@ -37,7 +37,8 @@ elif is_bundle and sys.platform=='darwin':
# pure-python dependencies need to be imported here for pyinstaller # pure-python dependencies need to be imported here for pyinstaller
try: try:
import dns if not is_android:
import dns
import aes import aes
import ecdsa import ecdsa
import requests import requests

View file

@ -201,6 +201,7 @@ def hash_160(public_key):
md.update(sha256(public_key)) md.update(sha256(public_key))
return md.digest() return md.digest()
except Exception: except Exception:
# not available in Android SL4a
import ripemd import ripemd
md = ripemd.new(sha256(public_key)) md = ripemd.new(sha256(public_key))
return md.digest() return md.digest()