Merge pull request #491 from Jud/master

Fix error when network.is_running() is called before the network is started.
This commit is contained in:
ThomasV 2013-12-10 04:14:25 -08:00
commit 8858ac249e
1 changed files with 1 additions and 0 deletions

View File

@ -50,6 +50,7 @@ class Network(threading.Thread):
self.queue = Queue.Queue()
self.callbacks = {}
self.protocol = self.config.get('protocol','s')
self.running = False
# Server for addresses and transactions
self.default_server = self.config.get('server')