Browse Source
follow-up prev: bad idea to eval translated string
3.3.3.1
SomberNight
6 years ago
No known key found for this signature in database
GPG Key ID: B33B5F232C6271E9
1 changed files with
1 additions and
1 deletions
-
electrum/gui/qt/main_window.py
|
|
@ -2111,7 +2111,7 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, PrintError): |
|
|
|
if len(mpk_list) > 1: |
|
|
|
def label(key): |
|
|
|
if isinstance(self.wallet, Multisig_Wallet): |
|
|
|
return f'{_("cosigner")} {key+1} ( keystore: {keystore_types[key]} )' |
|
|
|
return _("cosigner") + f' {key+1} ( keystore: {keystore_types[key]} )' |
|
|
|
return '' |
|
|
|
labels = [label(i) for i in range(len(mpk_list))] |
|
|
|
on_click = lambda clayout: show_mpk(clayout.selected_index()) |
|
|
|