示例#1
0
 def __init__(self, storage):
     BIP44_Wallet.__init__(self, storage)
     # After timeout seconds we clear the device session
     self.session_timeout = storage.get('session_timeout', 180)
     # Errors and other user interaction is done through the wallet's
     # handler.  The handler is per-window and preserved across
     # device reconnects
     self.handler = None
     self.force_watching_only = True
示例#2
0
文件: plugin.py 项目: Emzy/electrum
 def __init__(self, storage):
     BIP44_Wallet.__init__(self, storage)
     # This is set when paired with a device, and used to re-pair
     # a device that is disconnected and re-connected
     self.device_id = None
     # Errors and other user interaction is done through the wallet's
     # handler.  The handler is per-window and preserved across
     # device reconnects
     self.handler = None
示例#3
0
 def __init__(self, storage):
     BIP44_Wallet.__init__(self, storage)
     # After timeout seconds we clear the device session
     self.session_timeout = storage.get('session_timeout', 180)
     # Errors and other user interaction is done through the wallet's
     # handler.  The handler is per-window and preserved across
     # device reconnects
     self.handler = None
     self.force_watching_only = False
示例#4
0
    def __init__(self, storage):
        BIP44_Wallet.__init__(self, storage)
        # Errors and other user interaction is done through the wallet's
        # handler.  The handler is per-window and preserved across
        # device reconnects
        self.handler = None
        self.force_watching_only = False

        self.device_checked = False
        self.signing = False
示例#5
0
 def __init__(self, storage):
     BIP44_Wallet.__init__(self, storage)
     # This is set when paired with a device, and used to re-pair
     # a device that is disconnected and re-connected
     self.device_id = None
     # After timeout seconds we clear the device session
     self.session_timeout = storage.get('session_timeout', 180)
     # Errors and other user interaction is done through the wallet's
     # handler.  The handler is per-window and preserved across
     # device reconnects
     self.handler = None
示例#6
0
 def __init__(self, storage):
     BIP44_Wallet.__init__(self, storage)
     # Errors and other user interaction is done through the wallet's
     # handler.  The handler is per-window and preserved across
     # device reconnects
     self.handler = None