From 0d046716bf83b11b8686d6d0cd2cc5f6f5ea28f5 Mon Sep 17 00:00:00 2001
From: Inso <insomniak.fr@gmail.com>
Date: Fri, 3 Jul 2015 05:28:26 +0200
Subject: [PATCH] Fix type in node loading

---
 src/cutecoin/core/net/network.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/cutecoin/core/net/network.py b/src/cutecoin/core/net/network.py
index f82e083c..f483db38 100644
--- a/src/cutecoin/core/net/network.py
+++ b/src/cutecoin/core/net/network.py
@@ -197,7 +197,7 @@ class Network(QObject):
             for node in self.nodes:
                 if self.continue_crawling():
                     yield from asyncio.sleep(2)
-                    node.refresh_identities()
+                    node.refresh()
         logging.debug("End of network discovery")
 
     @pyqtSlot(Peer)
-- 
GitLab