11 lines
353 B
11 lines
353 B
from electrum.plugins import hook
|
|
from .digitalbitbox import DigitalBitboxPlugin
|
|
from ..hw_wallet import CmdLineHandler
|
|
|
|
class Plugin(DigitalBitboxPlugin):
|
|
handler = CmdLineHandler()
|
|
@hook
|
|
def init_keystore(self, keystore):
|
|
if not isinstance(keystore, self.keystore_class):
|
|
return
|
|
keystore.handler = self.handler
|
|
|