Example #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)
Example #2
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 bitcoin.is_address(n):
             self.pop(k)
             self[n] = ('address', k)
Example #3
0
 def __init__(self, config):
     StoreDict.__init__(self, config, 'contacts')
Example #4
0
 def __init__(self, config):
     StoreDict.__init__(self, config, 'contacts')