mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-23 17:47:31 +00:00
14 lines
331 B
Python
14 lines
331 B
Python
from .labels import LabelsPlugin
|
|
from electrum.plugin import hook
|
|
|
|
class Plugin(LabelsPlugin):
|
|
|
|
@hook
|
|
def load_wallet(self, wallet, window):
|
|
self.window = window
|
|
self.start_wallet(wallet)
|
|
|
|
def on_pulled(self, wallet):
|
|
self.print_error('on pulled')
|
|
self.window._trigger_update_history()
|
|
|