Skip to content

Commit c2f493b

Browse files
author
Jonathan Warren
committed
Fix issue #246
1 parent 32aaaf2 commit c2f493b

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

src/bitmessagemain.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
lengthOfTimeToHoldOnToAllPubkeys = 2419200 # Equals 4 weeks. You could make this longer if you want but making it shorter would not be advisable because there is a very small possibility that it could keep you from obtaining a needed pubkey for a period of time.
1515
maximumAgeOfObjectsThatIAdvertiseToOthers = 216000 # Equals two days and 12 hours
1616
maximumAgeOfNodesThatIAdvertiseToOthers = 10800 # Equals three hours
17-
storeConfigFilesInSameDirectoryAsProgramByDefault = False # The user may de-select Portable Mode in the settings if they want the config files to stay in the application data folder.
1817
useVeryEasyProofOfWorkForTesting = False # If you set this to True while on the normal network, you won't be able to send or sometimes receive messages.
1918
encryptedBroadcastSwitchoverTime = 1369735200
2019

src/helper_startup.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
import shared
22
import ConfigParser
3-
import time
3+
import sys
4+
import os
5+
6+
storeConfigFilesInSameDirectoryAsProgramByDefault = False # The user may de-select Portable Mode in the settings if they want the config files to stay in the application data folder.
47

58
def loadConfig():
69
# First try to load the config file (the keys.dat file) from the program

0 commit comments

Comments
 (0)