diff --git a/src/cutecoin/core/watchers/network.py b/src/cutecoin/core/watchers/network.py
index 77e5b18d41c84a019ab3cc34a61d2b7c975d2950..dbb89d2182e46229882a6487b8508282f306aac9 100644
--- a/src/cutecoin/core/watchers/network.py
+++ b/src/cutecoin/core/watchers/network.py
@@ -19,7 +19,6 @@ class NetworkWatcher(QObject):
 
     @pyqtSlot()
     def watch(self):
-        #self.community.network.moveToThread(self.thread())
         self.community.network.start_perpetual_crawling()
 
     @pyqtSlot()
diff --git a/src/cutecoin/gui/currency_tab.py b/src/cutecoin/gui/currency_tab.py
index bb0d3cab2304482f830ab5bcd091d3ee25b06940..ab12ccb03f135692ca01cca0508c26319ff8601c 100644
--- a/src/cutecoin/gui/currency_tab.py
+++ b/src/cutecoin/gui/currency_tab.py
@@ -46,7 +46,8 @@ class CurrencyTabWidget(QWidget, Ui_CurrencyTabWidget):
                                                     self.password_asker)
         self.tab_wallets = WalletsTabWidget(self.app,
                                             self.app.current_account,
-                                            self.community)
+                                            self.community,
+                                            self.password_asker)
 
         self.tab_network = NetworkTabWidget(self.community)
 
@@ -131,7 +132,8 @@ class CurrencyTabWidget(QWidget, Ui_CurrencyTabWidget):
 
             self.tab_wallets = WalletsTabWidget(self.app,
                                                 self.app.current_account,
-                                                self.community)
+                                                self.community,
+                                                self.password_asker)
             self.tabs_account.addTab(self.tab_wallets,
                                      QIcon(':/icons/wallet_icon'),
                                     "Wallets")
diff --git a/src/cutecoin/gui/wallets_tab.py b/src/cutecoin/gui/wallets_tab.py
index b75b69173ef8e9de31d179bc358b7bbba069e0d6..b9e286337f76c97f92d132c520a6b0e662ec1dd5 100644
--- a/src/cutecoin/gui/wallets_tab.py
+++ b/src/cutecoin/gui/wallets_tab.py
@@ -5,12 +5,13 @@ Created on 15 févr. 2015
 '''
 
 import logging
-from PyQt5.QtWidgets import QWidget, QMenu, QAction, QApplication
+from PyQt5.QtWidgets import QWidget, QMenu, QAction, QApplication, QDialog
 from PyQt5.QtCore import QDateTime, QModelIndex, Qt
 from PyQt5.QtGui import QCursor
 from ..core.person import Person
 from ..core.wallet import Wallet
 from ..models.wallets import WalletsTableModel, WalletsFilterProxyModel
+from .transfer import TransferMoneyDialog
 from ..tools.exceptions import MembershipNotFoundError
 from ..gen_resources.wallets_tab_uic import Ui_WalletsTab
 
@@ -20,7 +21,7 @@ class WalletsTabWidget(QWidget, Ui_WalletsTab):
     classdocs
     '''
 
-    def __init__(self, app, account, community):
+    def __init__(self, app, account, community, password_asker):
         '''
         Constructor
         '''
@@ -29,6 +30,7 @@ class WalletsTabWidget(QWidget, Ui_WalletsTab):
         self.app = app
         self.account = account
         self.community = community
+        self.password_asker = password_asker
 
         self.refresh()
 
@@ -82,11 +84,12 @@ class WalletsTabWidget(QWidget, Ui_WalletsTab):
             <tr><td align="right"><b>{:}</b></td><td>{:}</td></tr>
             </table>
             """.format("Your money share : ", "{:.2f}%".format(amount/maximum*100),
-                       "Your part : ", "{:.2f} {:} in [{:.2f} - {:.2f}] {:}".format(self.get_referential_value(amount),
-                                                                    self.get_referential_name(),
-                                                                   self.get_referential_value(0),
-                                                                   self.get_referential_value(maximum),
-                                                                   self.get_referential_name())
+                       "Your part : ", "{:.2f} {:} in [{:.2f} - {:.2f}] {:}"
+                       .format(self.get_referential_value(amount),
+                            self.get_referential_name(),
+                           self.get_referential_value(0),
+                           self.get_referential_value(maximum),
+                           self.get_referential_name())
             )
         )
 
@@ -130,8 +133,17 @@ class WalletsTabWidget(QWidget, Ui_WalletsTab):
             copy_pubkey.triggered.connect(self.copy_pubkey_to_clipboard)
             copy_pubkey.setData(pubkey)
 
+            transfer_to = QMenu()
+            transfer_to.setTitle("Transfer to...")
+            for w in self.account.wallets:
+                transfer_action = QAction(w.name, self)
+                transfer_action.triggered.connect(self.transfer_to_wallet)
+                transfer_action.setData(w)
+                transfer_to.addAction(transfer_action)
+
             menu.addAction(rename)
             menu.addAction(copy_pubkey)
+            menu.addMenu(transfer_to)
             # Show the context menu.
             menu.exec_(QCursor.pos())
 
@@ -151,3 +163,13 @@ class WalletsTabWidget(QWidget, Ui_WalletsTab):
             clipboard.setText(data.pubkey)
         elif data.__class__ is str:
             clipboard.setText(data)
+
+    def transfer_to_wallet(self):
+        wallet = self.sender().data()
+        dialog = TransferMoneyDialog(self.account, self.password_asker)
+        dialog.edit_pubkey.setText(wallet.pubkey)
+        dialog.combo_community.setCurrentText(self.community.name)
+        dialog.radio_pubkey.setChecked(True)
+        if dialog.exec_() == QDialog.Accepted:
+            currency_tab = self.window().currencies_tabwidget.currentWidget()
+            currency_tab.table_history.model().invalidate()