commit 5ea670b7658f0a3f5560f14f5ee12a95e5f62cc1
parent 9dde9971da83f146e30f7685a70578cfb3351372
Author: ThomasV <thomasv@electrum.org>
Date: Thu, 2 Mar 2017 11:18:15 +0100
kivy: fix missing parameter
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gui/kivy/main_window.py b/gui/kivy/main_window.py
@@ -426,7 +426,7 @@ class ElectrumWindow(App):
def load_wallet_by_name(self, path):
if not path:
return
- wallet = self.daemon.load_wallet(path)
+ wallet = self.daemon.load_wallet(path, None)
if wallet:
if wallet != self.wallet:
self.stop_wallet()