mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-28 07:51:27 +00:00
Merge pull request #4454 from matejcik/master
trezor: drop list of supported coins
This commit is contained in:
commit
a7589a97ad
1 changed files with 0 additions and 5 deletions
|
@ -345,7 +345,6 @@ class SettingsDialog(WindowModalDialog):
|
||||||
version = "%d.%d.%d" % (features.major_version,
|
version = "%d.%d.%d" % (features.major_version,
|
||||||
features.minor_version,
|
features.minor_version,
|
||||||
features.patch_version)
|
features.patch_version)
|
||||||
coins = ", ".join(coin.coin_name for coin in features.coins)
|
|
||||||
|
|
||||||
device_label.setText(features.label)
|
device_label.setText(features.label)
|
||||||
pin_set_label.setText(noyes[features.pin_protection])
|
pin_set_label.setText(noyes[features.pin_protection])
|
||||||
|
@ -355,7 +354,6 @@ class SettingsDialog(WindowModalDialog):
|
||||||
device_id_label.setText(features.device_id)
|
device_id_label.setText(features.device_id)
|
||||||
initialized_label.setText(noyes[features.initialized])
|
initialized_label.setText(noyes[features.initialized])
|
||||||
version_label.setText(version)
|
version_label.setText(version)
|
||||||
coins_label.setText(coins)
|
|
||||||
clear_pin_button.setVisible(features.pin_protection)
|
clear_pin_button.setVisible(features.pin_protection)
|
||||||
clear_pin_warning.setVisible(features.pin_protection)
|
clear_pin_warning.setVisible(features.pin_protection)
|
||||||
pin_button.setText(setchange[features.pin_protection])
|
pin_button.setText(setchange[features.pin_protection])
|
||||||
|
@ -456,8 +454,6 @@ class SettingsDialog(WindowModalDialog):
|
||||||
device_id_label = QLabel()
|
device_id_label = QLabel()
|
||||||
bl_hash_label = QLabel()
|
bl_hash_label = QLabel()
|
||||||
bl_hash_label.setWordWrap(True)
|
bl_hash_label.setWordWrap(True)
|
||||||
coins_label = QLabel()
|
|
||||||
coins_label.setWordWrap(True)
|
|
||||||
language_label = QLabel()
|
language_label = QLabel()
|
||||||
initialized_label = QLabel()
|
initialized_label = QLabel()
|
||||||
rows = [
|
rows = [
|
||||||
|
@ -467,7 +463,6 @@ class SettingsDialog(WindowModalDialog):
|
||||||
(_("Firmware Version"), version_label),
|
(_("Firmware Version"), version_label),
|
||||||
(_("Device ID"), device_id_label),
|
(_("Device ID"), device_id_label),
|
||||||
(_("Bootloader Hash"), bl_hash_label),
|
(_("Bootloader Hash"), bl_hash_label),
|
||||||
(_("Supported Coins"), coins_label),
|
|
||||||
(_("Language"), language_label),
|
(_("Language"), language_label),
|
||||||
(_("Initialized"), initialized_label),
|
(_("Initialized"), initialized_label),
|
||||||
]
|
]
|
||||||
|
|
Loading…
Add table
Reference in a new issue