Various fixes #771

Merged
Atheros1 merged 3 commits from master into master 2015-01-28 21:07:41 +01:00
3 changed files with 5 additions and 0 deletions
Showing only changes of commit 5b87bc26ec - Show all commits

View File

@ -1,3 +1,5 @@
from __future__ import division
import threading
import shared
import time

View File

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

View File

@ -1,3 +1,5 @@
from __future__ import division
softwareVersion = '0.4.4'
verbose = 1
maximumAgeOfAnObjectThatIAmWillingToAccept = 216000 # This is obsolete with the change to protocol v3 but the singleCleaner thread still hasn't been updated so we need this a little longer.