tfix issue #1238 - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 117b809bab531ec5d8eb2aa0f20a00c8f922a6a2 DIR parent 48ad7c36a8357e5664085cd5d282fd6dfede2bc8 HTML Author: ThomasV <thomasv@gitorious> Date: Sun, 24 May 2015 16:14:56 +0200 fix issue #1238 Diffstat: M lib/daemon.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- DIR diff --git a/lib/daemon.py b/lib/daemon.py t@@ -167,7 +167,7 @@ class NetworkServer(util.DaemonThread): m = response.get('method') v = response.get('params') for client in self.clients: - if repr((m, v)) in client.subscriptions: + if repr((m, v)) in client.subscriptions or m == 'network.status': client.response_queue.put(response) self.network.stop() print_error("server exiting")