mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-09-02 10:15:20 +00:00
fix #1768
This commit is contained in:
parent
1f8e6d38c8
commit
cb9a636616
1 changed files with 3 additions and 1 deletions
|
@ -106,6 +106,8 @@ class AddressList(MyTreeWidget):
|
|||
address_item.addChild(utxo_item)
|
||||
|
||||
def create_menu(self, position):
|
||||
from electrum.wallet import Multisig_Wallet
|
||||
is_multisig = isinstance(self.wallet, Multisig_Wallet)
|
||||
selected = self.selectedItems()
|
||||
multi_select = len(selected) > 1
|
||||
addrs = [unicode(item.text(0)) for item in selected]
|
||||
|
@ -136,7 +138,7 @@ class AddressList(MyTreeWidget):
|
|||
menu.addAction(_('Public Keys'), lambda: self.parent.show_public_keys(addr))
|
||||
if self.wallet.can_export():
|
||||
menu.addAction(_("Private key"), lambda: self.parent.show_private_key(addr))
|
||||
if not self.wallet.is_watching_only():
|
||||
if not is_multisig and not self.wallet.is_watching_only():
|
||||
menu.addAction(_("Sign/verify message"), lambda: self.parent.sign_verify_message(addr))
|
||||
menu.addAction(_("Encrypt/decrypt message"), lambda: self.parent.encrypt_message(addr))
|
||||
if self.wallet.is_imported(addr):
|
||||
|
|
Loading…
Add table
Reference in a new issue