tkivy: fix missing parameter - electrum - Electrum Bitcoin wallet
HTML git clone https://git.parazyd.org/electrum
DIR Log
DIR Files
DIR Refs
DIR Submodules
---
DIR commit 5ea670b7658f0a3f5560f14f5ee12a95e5f62cc1
DIR parent 9dde9971da83f146e30f7685a70578cfb3351372
HTML Author: ThomasV <thomasv@electrum.org>
Date: Thu, 2 Mar 2017 11:18:15 +0100
kivy: fix missing parameter
Diffstat:
M gui/kivy/main_window.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
DIR diff --git a/gui/kivy/main_window.py b/gui/kivy/main_window.py
t@@ -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()