1
0

make daemon usable with the GUI

This commit is contained in:
ThomasV
2014-07-24 10:59:13 +02:00
parent ab41c6f940
commit 9ee0614edb
10 changed files with 333 additions and 259 deletions

View File

@@ -56,8 +56,10 @@ class WalletSynchronizer(threading.Thread):
with self.lock:
self.running = True
while self.is_running():
if not self.network.is_connected():
self.network.wait_until_connected()
while not self.network.is_connected():
import time
time.sleep(5)
#self.network.wait_until_connected()
self.run_interface()
def run_interface(self):