Browse Source

one more daemon thread

283
ThomasV 11 years ago
parent
commit
312051a242
  1. 4
      lib/network.py

4
lib/network.py

@ -223,7 +223,9 @@ class Network(threading.Thread):
self.running = True
self.response_queue = response_queue
self.start_interfaces()
threading.Thread(target=self.process_requests_thread).start()
t = threading.Thread(target=self.process_requests_thread)
t.daemon = True
t.start()
self.blockchain.start()
threading.Thread.start(self)

Loading…
Cancel
Save