diff --git a/lib/plugins.py b/lib/plugins.py index 72805f78b..a8ee212f9 100644 --- a/lib/plugins.py +++ b/lib/plugins.py @@ -162,6 +162,8 @@ def _run_hook(name, always, *args): results = [] f_list = hooks.get(name, []) for p, f in f_list: + if name == 'load_wallet': + p.wallet = args[0] # For for p.is_enabled() below if always or p.is_enabled(): try: r = f(*args)