moving to release with better settings and onboarding

This commit is contained in:
Kevin Froman 2020-02-03 20:08:06 -06:00
parent 09617dc563
commit 68074d4dd8
9 changed files with 23 additions and 15 deletions

View file

@ -14,6 +14,9 @@ conf['tor']['existing_socks_port'] = 0
conf['general']['dev_mode'] = False
conf['general']['insert_deniable_blocks'] = True
conf['general']['random_bind_ip'] = True
conf['onboarding']['done'] = False
conf['general']['minimum_block_pow'] = 6
conf['general']['minimum_send_pow'] = 6
json.dump(conf, open('static-data/default_config.json', 'w'), sort_keys=True, indent=4)

View file

@ -14,7 +14,10 @@ if input("Reuse Tor? y/n:").lower() == 'y':
conf['general']['dev_mode'] = True
conf['general']['insert_deniable_blocks'] = False
conf['general']['general.random_bind_ip'] = False
conf['general']['random_bind_ip'] = False
conf['onboarding']['done'] = True
conf['general']['minimum_block_pow'] = 4
conf['general']['minimum_send_pow'] = 4
json.dump(conf, open('static-data/default_config.json', 'w'), sort_keys=True, indent=4)