You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/bitmessagemain.py
-1Lines changed: 0 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,6 @@
14
14
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.
15
15
maximumAgeOfObjectsThatIAdvertiseToOthers=216000# Equals two days and 12 hours
16
16
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.
18
17
useVeryEasyProofOfWorkForTesting=False# If you set this to True while on the normal network, you won't be able to send or sometimes receive messages.
Copy file name to clipboardExpand all lines: src/helper_startup.py
+4-1Lines changed: 4 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,9 @@
1
1
importshared
2
2
importConfigParser
3
-
importtime
3
+
importsys
4
+
importos
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.
4
7
5
8
defloadConfig():
6
9
# First try to load the config file (the keys.dat file) from the program
0 commit comments