コード例 #1
0
 def __init__(self, config):
     StoreDict.__init__(self, config, 'contacts')
     # backward compatibility
     for k, v in self.items():
         _type, n = v
         if _type == 'address' and stratis.is_address(n):
             self.pop(k)
             self[n] = ('address', k)
コード例 #2
0
ファイル: contacts.py プロジェクト: Andymeows/electrum-doge
 def __init__(self, config):
     StoreDict.__init__(self, config, 'contacts')
     # backward compatibility
     for k, v in self.items():
         _type, n = v
         if _type == 'address' and bitcoin.is_address(n):
             self.pop(k)
             self[n] = ('address', k)
コード例 #3
0
ファイル: contacts.py プロジェクト: LiteBit/electrum
 def __init__(self, config):
     StoreDict.__init__(self, config, 'contacts')
コード例 #4
0
 def __init__(self, config):
     StoreDict.__init__(self, config, 'contacts')