1
0

Have close_wallet hook take a wallet.

This commit is contained in:
Neil Booth
2015-12-31 10:31:49 +09:00
parent b8f2d9dfd4
commit 93d05e8cfe
4 changed files with 5 additions and 10 deletions

View File

@@ -434,13 +434,11 @@ class LedgerPlugin(BasePlugin):
return True
@hook
def close_wallet(self):
pass
def close_wallet(self, wallet):
self.client = None
@hook
def installwizard_load_wallet(self, wallet, window):
if type(wallet) != BTChipWallet:
return
self.load_wallet(wallet, window)
@hook