예제 #1
0
 def __init__(self, config, name):
     BasePlugin.__init__(self, config, name)
     self._is_available = self._init()
     self._requires_settings = True
     self.wallet = None
     self.window = None
     if self._is_available:
         chainkey.wallet.wallet_types.append(('hardware', 'trezor', _("Trezor wallet"), TrezorWallet))
예제 #2
0
파일: trezor.py 프로젝트: oktoshi/encompass
 def __init__(self, config, name):
     BasePlugin.__init__(self, config, name)
     self._is_available = self._init()
     self._requires_settings = True
     self.wallet = None
     self.window = None
     if self._is_available:
         chainkey.wallet.wallet_types.append(
             ('hardware', 'trezor', _("Trezor wallet"), TrezorWallet))
예제 #3
0
 def is_available(self):
     if not BasePlugin.is_available(self):
         return False
     if flag_matlib:
         return True
     else:
         return False
예제 #4
0
 def is_available(self):
     if not BasePlugin.is_available(self):
         return False
     if flag_matlib:
         return True
     else:
         return False
예제 #5
0
 def __init__(self, gui, name):
     BasePlugin.__init__(self, gui, name)
     self._is_available = OA_READY
     print_error('OA_READY is ' + str(OA_READY))
     self.previous_payto = ''
예제 #6
0
 def enable(self):
     return BasePlugin.enable(self)
예제 #7
0
 def __init__(self, gui, name):
     BasePlugin.__init__(self, gui, name)
     self._is_available = self._init()
     self.wallet = None        
예제 #8
0
 def __init__(self, gui, name):
     BasePlugin.__init__(self, gui, name)
     self._is_available = OA_READY
     print_error('OA_READY is ' + str(OA_READY))
     self.previous_payto = ''
예제 #9
0
 def __init__(self, config, name):
     BasePlugin.__init__(self, config, name)
     self.file_path = None
     self.csv = False
     self.full_labels = True
예제 #10
0
 def enable(self):
     return BasePlugin.enable(self)
예제 #11
0
 def __init__(self, gui, name):
     BasePlugin.__init__(self, gui, name)
     self._is_available = self._init()
     self.wallet = None
예제 #12
0
 def __init__(self, config, name):
     BasePlugin.__init__(self, config, name)
     self._is_available = self._init()
     self._requires_settings = True
     self.wallet = None
     self.handler = None
예제 #13
0
 def __init__(self, a, b):
     BasePlugin.__init__(self, a, b)
     self.currencies = [self.fiat_unit()]
     self.exchanges = [self.config.get('use_exchange', "Blockchain")]
     self.exchanger = None
예제 #14
0
 def __init__(self,a,b):
     BasePlugin.__init__(self,a,b)
     self.currencies = [self.fiat_unit()]
     self.exchanges = [self.config.get('use_exchange', "Blockchain")]
     self.exchanger = None
예제 #15
0
 def __init__(self, config, name):
     BasePlugin.__init__(self, config, name)
     self.file_path = None
     self.csv = False
     self.full_labels = True
예제 #16
0
 def __init__(self, config, name):
     BasePlugin.__init__(self, config, name)
     self._is_available = self._init()
     self._requires_settings = True
     self.wallet = None
     self.handler = None