Actually OSX app maded with py2app can parallelize just fine

This commit is contained in:
Grant T. Olson 2013-08-23 16:10:57 -04:00
parent a20213f1e8
commit bd489408c7

View File

@ -71,7 +71,7 @@ def _doFastPoW(target, initialHash):
time.sleep(0.2) time.sleep(0.2)
def run(target, initialHash): def run(target, initialHash):
if not frozen: if frozen == "macosx_app" or not frozen:
return _doFastPoW(target, initialHash) return _doFastPoW(target, initialHash)
else: else:
return _doSafePoW(target, initialHash) return _doSafePoW(target, initialHash)