Files
pallectrum/electrum/plugins/labels/cmdline.py

12 lines
271 B
Python
Raw Normal View History

from .labels import LabelsPlugin
from electrum.plugin import hook
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')