Skip to content

Commit bd54c59

Browse files
ystarnaudveox
authored andcommitted
Updated example.conf
1 parent fae56ce commit bd54c59

File tree

1 file changed

+93
-70
lines changed

1 file changed

+93
-70
lines changed

example.conf

+93-70
Original file line numberDiff line numberDiff line change
@@ -1,71 +1,94 @@
11
{
2-
"pools" : [
3-
{
4-
"name" : "Preferred Pool",
5-
"url" : "http://url1:8332",
6-
"user" : "user1",
7-
"pass" : "pass1"
8-
},
9-
{
10-
"name" : "Failover Pool",
11-
"url" : "http://url2:8344",
12-
"user" : "user2",
13-
"pass" : "pass2",
14-
"state" : "enabled"
15-
},
16-
{
17-
"name" : "Failover Pool",
18-
"url" : "http://url3:8344",
19-
"user" : "user3",
20-
"pass" : "pass3",
21-
"algorithm" : "adaptive-n-factor",
22-
"state" : "disabled"
23-
},
24-
{
25-
"name" : "Testing Pool",
26-
"url" : "http://url4:8332",
27-
"user" : "user4",
28-
"pass" : "pass4",
29-
"state" : "hidden"
30-
}
31-
],
32-
33-
"failover-only" : true,
34-
"failover-switch-delay" : "60",
35-
"no-pool-disable" : true,
36-
37-
"kernel-path" : "/usr/local/bin",
38-
"kernel" : "alexkarold,ckolivas,zuikkis",
39-
40-
"algorithm" : "scrypt",
41-
42-
"intensity" : "d,9,9,9",
43-
"xintensity" : "0,0,0",
44-
"rawintensity" : "0,0,0",
45-
"lookup-gap" : "2,2,2",
46-
47-
"thread-concurrency" : "15508,15508,15508",
48-
"shaders" : "0,0,0",
49-
50-
"gpu-threads" : "2",
51-
"gpu-engine" : "0-985,0-950,0-1000",
52-
"gpu-memclock" : "860,825,875",
53-
"gpu-powertune" : "20,20,20",
54-
55-
"gpu-vddc" : "0.000,0.000,0.000",
56-
"gpu-fan" : "0-85,0-85,0-85",
57-
58-
"auto-gpu" : true,
59-
"auto-fan" : true,
60-
61-
"temp-target" : "75,75,75",
62-
"temp-overheat" : "80,85,90",
63-
"temp-cutoff" : "95",
64-
"temp-hysteresis" : "3",
65-
66-
"queue" : "1",
67-
"scan-time" : "7",
68-
"expiry" : "28",
69-
70-
"log" : "5"
71-
}
2+
"pools": [
3+
{
4+
"name":"Testpool X11",
5+
"url": "stratum+tcp://url1:4440",
6+
"user": "user",
7+
"pass": "x",
8+
"priority": "1",
9+
"profile": "x11"
10+
},
11+
{
12+
"name":"Testpool Scrypt",
13+
"url": "stratum+tcp://url2:3339",
14+
"user": "user",
15+
"pass": "x",
16+
"priority": "2",
17+
"profile": "scrypt"
18+
},
19+
{
20+
"name":"Testpool X11 with other profile",
21+
"url": "stratum+tcp://url3:4440",
22+
"user": "user",
23+
"pass": "x",
24+
"priority": "0",
25+
"profile": "x11test"
26+
},
27+
{
28+
"name":"Testpool Using default profile",
29+
"url": "stratum+tcp://url4:3333",
30+
"user": "user",
31+
"pass": "x"
32+
}
33+
],
34+
"profiles": [
35+
{
36+
"name": "x11",
37+
"algorithm": "darkcoin-mod",
38+
"intensity": "19",
39+
"thread-concurrency": "10696,8192",
40+
"worksize": "128",
41+
"gpu-engine": "1100",
42+
"gpu-threads": "2",
43+
"gpu-fan": "75"
44+
},
45+
{
46+
"name": "scrypt",
47+
"algorithm": "ckolivas",
48+
"lookup-gap": "2",
49+
"intensity": "19,13",
50+
"thread-concurrency": "19656,8192",
51+
"worksize": "256",
52+
"gpu-engine": "1000,1065",
53+
"gpu-memclock": "1500",
54+
"gpu-threads": "1,2",
55+
"gpu-fan": "85",
56+
"gpu-powertune": "20"
57+
},
58+
{
59+
"name": "x11test",
60+
"algorithm": "darkcoin-mod",
61+
"device": "1",
62+
"intensity": "19",
63+
"thread-concurrency": "10696,8192",
64+
"worksize": "512",
65+
"gpu-engine": "1100",
66+
"gpu-threads": "2",
67+
"gpu-fan": "75"
68+
}
69+
],
70+
"failover-only": true,
71+
"default-profile": "scrypt",
72+
"temp-cutoff": "95,95",
73+
"temp-overheat": "90,90",
74+
"temp-target": "80,80",
75+
"gpu-memdiff": "0,0",
76+
"shares": "0",
77+
"kernel-path": "/usr/local/bin",
78+
"api-allow": "W:127.0.0.1",
79+
"api-listen": true,
80+
"api-mcast-port": "4028",
81+
"api-port": "4028",
82+
"expiry": "1",
83+
"failover-switch-delay": "60",
84+
"gpu-dyninterval": "7",
85+
"gpu-platform": "-1",
86+
"hamsi-expand-big": "4",
87+
"log": "5",
88+
"no-pool-disable": true,
89+
"no-client-reconnect": true,
90+
"queue": "0",
91+
"scan-time": "1",
92+
"tcp-keepalive": "30",
93+
"temp-hysteresis": "3"
94+
}

0 commit comments

Comments
 (0)