forked from fireice-uk/cryptonote-xmr-pool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig_example.json
93 lines (75 loc) · 1.8 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"coin": "monero",
"coinUnits": 1000000000000,
"transferFee": 1000000,
"poolHost": "cryppit.com",
"email": "support@cryppit.com",
"poolAddress": "4AsBy39rpUMTmgTUARGq2bFQWhDhdQNekK5v4uaLU699NPAnx9CubEJ82AkvD5ScoAZNYRwBxybayainhyThHAZWCdKmPYn",
"poolServer": {
"enabled": true,
"ports": [
{
"port": 3333,
"difficulty": 50,
"desc": "Low end CPUs"
},
{
"port": 5555,
"difficulty": 200,
"desc": "Mid range CPUs"
},
{
"port": 7777,
"difficulty": 2000,
"desc": "High end CPUs"
}
],
"varDiff": {
"minDiff": 2,
"maxDiff": 10000,
"targetTime": 100,
"retargetTime": 30,
"variancePercent": 30
}
},
"easyminerDownload": "https://github.com/zone117x/cryptonote-easy-miner/releases/",
"clusterForks": "auto",
"logLevel": "debug",
"logColors": true,
"blockRefreshInterval": 1000,
"minerTimeout": 900,
"longPolling": {
"enabled": false,
"timeout": 8500
},
"banning": {
"enabled": true,
"time": 600,
"invalidPercent": 25,
"checkThreshold": 30
},
"payments": {
"enabled": true,
"interval": 30,
"poolFee": 2,
"depth": 60
},
"api": {
"enabled": true,
"hashrateWindow": 600,
"updateInterval": 3,
"port": 8117
},
"daemon": {
"host": "127.0.0.1",
"port": 18081
},
"wallet": {
"host": "127.0.0.1",
"port": 8082
},
"redis": {
"host": "127.0.0.1",
"port": 6379
}
}