Beispiel #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))
Beispiel #2
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))
Beispiel #3
0
 def is_available(self):
     if not BasePlugin.is_available(self):
         return False
     if flag_matlib:
         return True
     else:
         return False
Beispiel #4
0
 def is_available(self):
     if not BasePlugin.is_available(self):
         return False
     if flag_matlib:
         return True
     else:
         return False
Beispiel #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 = ''
Beispiel #6
0
 def enable(self):
     return BasePlugin.enable(self)
Beispiel #7
0
 def __init__(self, gui, name):
     BasePlugin.__init__(self, gui, name)
     self._is_available = self._init()
     self.wallet = None        
Beispiel #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 = ''
Beispiel #9
0
 def __init__(self, config, name):
     BasePlugin.__init__(self, config, name)
     self.file_path = None
     self.csv = False
     self.full_labels = True
Beispiel #10
0
 def enable(self):
     return BasePlugin.enable(self)
Beispiel #11
0
 def __init__(self, gui, name):
     BasePlugin.__init__(self, gui, name)
     self._is_available = self._init()
     self.wallet = None
Beispiel #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
Beispiel #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
Beispiel #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
Beispiel #15
0
 def __init__(self, config, name):
     BasePlugin.__init__(self, config, name)
     self.file_path = None
     self.csv = False
     self.full_labels = True
Beispiel #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