mirror of
https://github.com/aljazceru/python-teos.git
synced 2025-12-17 22:24:23 +01:00
Bug fix: Properly initializes Responder
This commit is contained in:
@@ -1,6 +1,5 @@
|
||||
import zmq
|
||||
import binascii
|
||||
from queue import Queue
|
||||
from threading import Thread, Event, Condition
|
||||
|
||||
from common.logger import Logger
|
||||
@@ -26,8 +25,8 @@ class ChainMonitor:
|
||||
self.zmqSubSocket.connect("%s://%s:%s" % (FEED_PROTOCOL, FEED_ADDR, FEED_PORT))
|
||||
|
||||
self.watcher_queue = None
|
||||
self.watcher_asleep = True
|
||||
self.responder_queue = None
|
||||
self.watcher_asleep = True
|
||||
self.responder_asleep = True
|
||||
|
||||
def attach_watcher(self, queue, awake):
|
||||
|
||||
Reference in New Issue
Block a user