mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-30 08:51:32 +00:00
kivy: fix missing parameter
This commit is contained in:
parent
9dde9971da
commit
5ea670b765
1 changed files with 1 additions and 1 deletions
|
@ -426,7 +426,7 @@ class ElectrumWindow(App):
|
||||||
def load_wallet_by_name(self, path):
|
def load_wallet_by_name(self, path):
|
||||||
if not path:
|
if not path:
|
||||||
return
|
return
|
||||||
wallet = self.daemon.load_wallet(path)
|
wallet = self.daemon.load_wallet(path, None)
|
||||||
if wallet:
|
if wallet:
|
||||||
if wallet != self.wallet:
|
if wallet != self.wallet:
|
||||||
self.stop_wallet()
|
self.stop_wallet()
|
||||||
|
|
Loading…
Add table
Reference in a new issue