mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-09-02 10:15:20 +00:00
fix is_seeded
This commit is contained in:
parent
13fd5b7e3c
commit
3d4a16b5c8
2 changed files with 5 additions and 2 deletions
|
@ -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))
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue