1
0

Allow zip plugins to register keystore

This makes it possible to create external plugins that add support
for hardware wallets.
This commit is contained in:
ThomasV
2025-04-11 09:20:52 +02:00
parent 737417fb80
commit de047195a9

View File

@@ -317,6 +317,9 @@ class Plugins(DaemonThread):
continue
if 'fullname' not in d:
continue
details = d.get('registers_keystore')
if details:
self.register_keystore(name, gui_good, details)
if external:
self.external_plugin_metadata[name] = d
else: