Better install wizard
Break out the workflow logic of the install wizard into a base class. This means reimplementing with full support in a new GUI is now easy; you just provide ways to request passwords, show messages etc. The API is fully documented in the base class. There are a couple of minor outstanding issues, including that the old messages shown when recovering a wallet are missing. I will come back to that. Ledger wallet might be broken. Other improvements: The install wizard code is now easy to follow and understand. Hardware wallets can now be restored without any need for their accompanying libraries. Various bits of trustedcoin were broken and have been fixed. Many plugin hooks can be removed. I have only started on this.
This commit is contained in:
@@ -1,6 +1,5 @@
|
||||
from keepkey import KeepKeyPlugin
|
||||
from electrum.util import print_msg
|
||||
from electrum.plugins import hook
|
||||
|
||||
class KeepKeyCmdLineHandler:
|
||||
|
||||
@@ -23,8 +22,4 @@ class KeepKeyCmdLineHandler:
|
||||
print_msg(msg)
|
||||
|
||||
class Plugin(KeepKeyPlugin):
|
||||
@hook
|
||||
def cmdline_load_wallet(self, wallet):
|
||||
wallet.plugin = self
|
||||
if self.handler is None:
|
||||
self.handler = KeepKeyCmdLineHandler()
|
||||
handler = KeepKeyCmdLineHandler()
|
||||
|
||||
Reference in New Issue
Block a user