Browse Source

Need an interface to process a request.

Occasionally triggered with a race at start up, typically from
the verifier requesting a merkle root.
283
Neil Booth 10 years ago
parent
commit
caebdd0819
  1. 2
      lib/network.py

2
lib/network.py

@ -432,7 +432,7 @@ class Network(util.DaemonThread):
self.response_queue.put(response)
def handle_requests(self):
while True:
while self.interface:
try:
request = self.requests_queue.get_nowait()
except Queue.Empty:

Loading…
Cancel
Save