2015-11-23 19:38:48 +01:00
|
|
|
from labels import LabelsPlugin
|
2015-12-01 17:29:24 +01:00
|
|
|
from electrum.plugins import hook
|
|
|
|
|
|
2015-11-23 19:38:48 +01:00
|
|
|
class Plugin(LabelsPlugin):
|
2015-12-01 17:29:24 +01: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')
|
2016-02-12 13:01:48 +01:00
|
|
|
self.window.update_tab('history')
|
2015-12-01 17:29:24 +01:00
|
|
|
|