Onionr/onionr/coredb/dbfiles.py

10 lines
385 B
Python
Raw Normal View History

from utils import identifyhome
home = identifyhome.identify_home()
if not home.endswith('/'): home += '/'
2019-07-17 22:41:33 +00:00
block_meta_db = '%sblock-metadata.db' % (home,)
block_data_db = '%sblocks/block-data.db' % (home,)
daemon_queue_db = '%sdaemon-queue.db' % (home,)
address_info_db = '%saddress.db' % (home,)
user_id_info_db = '%susers.db' % (home,)
forward_keys_db = '%sforward-keys.db' % (home,)