-
Notifications
You must be signed in to change notification settings - Fork 37
/
config_example.json
61 lines (52 loc) · 1.2 KB
/
config_example.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"coin": "zcash_testnet.json",
"address": "tmTrPDwPTJweuwPR7Hgt6u1dN7Vq4tZyuxm",
"ports": {
"3032": {
"tls": false
}
},
"tlsOptions": {
"enabled": false,
"serverKey": "~/certs/server-privatekey.pem",
"serverCert": "~/certs/server-cert.pem",
"ca": "~/certs/server-csr.pem"
},
"blockRefreshInterval": 100,
"jobRebroadcastTimeout": 55,
"connectionTimeout": 6000000,
"emitInvalidBlockHashes": false,
"tcpProxyProtocol": false,
"banning": {
"enabled": true,
"time": 600,
"invalidPercent": 50,
"checkThreshold": 500,
"purgeInterval": 300
},
"daemons": [{
"host": "127.0.0.1",
"port": 18333,
"user": "rpcuser",
"password": "rpcpassword"
}],
"website": {
"enabled": true,
"host": "0.0.0.0",
"port": "8080"
},
"p2p": {
"enabled": false,
"host": "127.0.0.1",
"port": 8133,
"disableTransactions": true
},
"clustering": {
"enabled": true,
"forks": "auto"
},
"blockNotifyListener": {
"enabled": false,
"port": 17117
}
}