-
Notifications
You must be signed in to change notification settings - Fork 2
/
linx.json.example
80 lines (67 loc) · 1.74 KB
/
linx.json.example
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
{
"enabled": true,
"coin": "linx.json",
"auxes": [],
"address": "YOURPOOLWALLETADDRESSHERE",
"rewardRecipients": {
// The FIRST recipient MUST be the exact address and the amount specified below
// If it isn't, any found blocks will be rejected
// Any change to the address or the amount will also result in blocks being rejected
"XF7kCcs4woQD9WWnCHuN6SWPeUNK2fBspr": 1.25,
// Now add your pool fee here as normal
"YOURPOOLFEEWALLETADDRESSHERE": 1.0
},
"paymentProcessing": {
"enabled": true,
"paymentInterval": 600,
"minimumPayment": 9999999999,
"daemon": {
"host": "127.0.0.1",
"port": 12924,
"user": "testuser",
"password": "testpass"
}
},
"ports": {
"3008": {
"diff": 8
},
"3032": {
"diff": 32,
"varDiff": {
"minDiff": 8,
"maxDiff": 512,
"targetTime": 15,
"retargetTime": 90,
"variancePercent": 30
}
},
"3256": {
"diff": 256
}
},
"daemons": [
{
"host": "127.0.0.1",
"port": 12924,
"user": "testuser",
"password": "testpass"
}
],
"p2p": {
"enabled": false,
"host": "127.0.0.1",
"port": 12924,
"disableTransactions": false
},
"mposMode": {
"enabled": false,
"host": "127.0.0.1",
"port": 3306,
"user": "me",
"password": "mypass",
"database": "ltc",
"checkPassword": false,
"autoCreateWorker": false
}
}