1
0

allow all plugins to be either zip or directory based

This commit is contained in:
f321x
2025-03-17 14:22:01 +01:00
parent bea4c617f6
commit 246f03fe20
4 changed files with 98 additions and 67 deletions

View File

@@ -460,7 +460,7 @@ class ElectrumQmlApplication(QGuiApplication):
"MEMPOOL_MB": electrum.util.UI_UNIT_NAME_MEMPOOL_MB,
})
self.plugins.load_internal_plugin('trustedcoin')
self.plugins.load_plugin_by_name('trustedcoin')
qInstallMessageHandler(self.message_handler)

View File

@@ -159,7 +159,7 @@ class ElectrumGui(BaseElectrumGui, Logger):
self.reload_app_stylesheet()
# always load 2fa
self.plugins.load_internal_plugin('trustedcoin')
self.plugins.load_plugin_by_name('trustedcoin')
run_hook('init_qt', self)