fix is_seeded
authorThomasV <thomasv@gitorious>
Sat, 28 Sep 2013 09:54:48 +0000 (11:54 +0200)
committerThomasV <thomasv@gitorious>
Sat, 28 Sep 2013 09:54:48 +0000 (11:54 +0200)
gui/qt/main_window.py
lib/wallet.py

index c3f23fe..6171e67 100644 (file)
@@ -1103,9 +1103,9 @@ class ElectrumWindow(QMainWindow):
     def create_account_menu(self, position, k, item):
         menu = QMenu()
         if item.isExpanded():
-            menu.addAction(_("Reduce"), lambda: item.setExpanded(False))
+            menu.addAction(_("Minimize"), lambda: item.setExpanded(False))
         else:
-            menu.addAction(_("Expand"), lambda: item.setExpanded(True))
+            menu.addAction(_("Maximize"), lambda: item.setExpanded(True))
         menu.addAction(_("Rename"), lambda: self.edit_account_label(k))
         menu.addAction(_("View details"), lambda: self.show_account_details(k))
         menu.exec_(self.receive_list.viewport().mapToGlobal(position))
index 6bebc53..f4aa4a3 100644 (file)
@@ -500,6 +500,9 @@ class Wallet:
         return roots
 
     def is_seeded(self, account):
+        if type(account) is int:
+            return self.seed is not None
+
         for root in self.get_roots(account):
             if root not in self.master_private_keys.keys(): 
                 return False