electrum-bitcoinprivate/plugins/labels/kivy.py

15 lines
347 B
Python
Raw Normal View History

2017-03-15 04:13:20 -07:00
from .labels import LabelsPlugin
2019-12-24 03:21:35 -08:00
from electrum_bitcoinprivate.plugins import hook
2015-12-01 08:29:24 -08:00
class Plugin(LabelsPlugin):
2015-12-01 08:29:24 -08:00
@hook
def load_wallet(self, wallet, window):
self.window = window
self.start_wallet(wallet)
def on_pulled(self, wallet):
self.print_error('on pulled')
2017-03-13 07:07:35 -07:00
self.window._trigger_update_history()
2015-12-01 08:29:24 -08:00