diff --git a/src/cutecoin/core/txhistory.py b/src/cutecoin/core/txhistory.py
index 67c65e956ed8fe1aeb71700af9d2813a83a876bf..1b0eeecd928b38a7fab7c06ac6a28f6f740ec438 100644
--- a/src/cutecoin/core/txhistory.py
+++ b/src/cutecoin/core/txhistory.py
@@ -260,7 +260,7 @@ class TxHistory():
                 parsed_block += 1
 
             if current_block['number'] > self.latest_block:
-                self.available_sources = yield from self.wallet.future_sources(community)
+                self.available_sources = yield from self.wallet.sources(community)
                 if self._stop_coroutines:
                     return
                 self.latest_block = current_block['number']
diff --git a/src/cutecoin/core/txhistory_indexation.py b/src/cutecoin/core/txhistory_indexation.py
index d608a0eebb981b4672f9eac905291b8ba73c5655..7e6aaf0276cbb6a8c6b90f3f7859d01db216a0e6 100644
--- a/src/cutecoin/core/txhistory_indexation.py
+++ b/src/cutecoin/core/txhistory_indexation.py
@@ -239,7 +239,7 @@ class TxHistory():
             parsed_block += 100
 
         if current_block['number'] > self.latest_block:
-            self.available_sources = yield from self.wallet.future_sources(community)
+            self.available_sources = yield from self.wallet.sources(community)
             if self._stop_coroutines:
                 return
             self.latest_block = current_block['number']