Use fast POW unless frozen #461

Merged
Atheros1 merged 3 commits from master into master 2013-08-30 17:56:57 +02:00
Showing only changes of commit bd489408c7 - Show all commits

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)