032aa780ef
* do not crash when loading new peer profile * removed code for defunct *address* proof of work + added maxStoredPeers and maxConnect config options (TODO) + added lastConnectAttempt to address db + added command to cause instant peer exchange + added connectCheck.txt for TODO connection testing
65 lines
1002 B
JSON
65 lines
1002 B
JSON
{
|
|
"general" : {
|
|
"dev_mode": true,
|
|
"display_header" : true,
|
|
|
|
"direct_connect" : {
|
|
"respond" : true,
|
|
"execute_callbacks" : true
|
|
}
|
|
},
|
|
|
|
"www" : {
|
|
"public" : {
|
|
"run" : true
|
|
},
|
|
|
|
"private" : {
|
|
"run" : true
|
|
},
|
|
|
|
"ui" : {
|
|
"run" : true,
|
|
"private" : true
|
|
}
|
|
},
|
|
|
|
"client" : {
|
|
|
|
},
|
|
|
|
"log": {
|
|
"file": {
|
|
"output": true,
|
|
"path": "data/output.log"
|
|
},
|
|
|
|
"console": {
|
|
"output": true,
|
|
"color": true
|
|
}
|
|
},
|
|
|
|
"tor" : {
|
|
|
|
},
|
|
|
|
"i2p":{
|
|
"host": false,
|
|
"connect": true,
|
|
"ownAddr": ""
|
|
},
|
|
|
|
"allocations":{
|
|
"disk": 9000000000,
|
|
"netTotal": 1000000000,
|
|
"blockCache" : 5000000,
|
|
"blockCacheTotal" : 50000000
|
|
},
|
|
"peers":{
|
|
"minimumScore": 5,
|
|
"maxStoredPeers": 100,
|
|
"maxConnect": 3
|
|
}
|
|
}
|