2018-06-29 11:58:12 +02:00
|
|
|
from .labels import LabelsPlugin
|
2018-07-11 17:38:47 +02:00
|
|
|
from electrum.plugin import hook
|
2018-06-29 11:58:12 +02:00
|
|
|
|
|
|
|
|
class Plugin(LabelsPlugin):
|
|
|
|
|
|
|
|
|
|
@hook
|
|
|
|
|
def load_wallet(self, wallet, window):
|
|
|
|
|
self.start_wallet(wallet)
|
|
|
|
|
|
|
|
|
|
def on_pulled(self, wallet):
|
2019-04-26 18:52:26 +02:00
|
|
|
self.logger.info('labels pulled from server')
|