From 6b46c9c6ca5436a067bba9ec485e73479cf38395 Mon Sep 17 00:00:00 2001 From: Inso <insomniak.fr@gmail.com> Date: Sat, 22 Aug 2015 19:51:48 +0200 Subject: [PATCH] Fix bug with node refresh --- src/cutecoin/core/net/network.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/cutecoin/core/net/network.py b/src/cutecoin/core/net/network.py index 78c0c294..3ba01a0c 100644 --- a/src/cutecoin/core/net/network.py +++ b/src/cutecoin/core/net/network.py @@ -254,6 +254,7 @@ class Network(QObject): if node.state in (Node.ONLINE, Node.DESYNCED): for nd in [n for n in self._nodes if n.state in (Node.ONLINE, Node.DESYNCED)]: nd.check_sync(self.latest_block_hash) + self.nodes_changed.emit() else: if node.last_change + 3600 < time.time(): node.disconnect() -- GitLab