Skip to content

Commit

Permalink
Added more example configs
Browse files Browse the repository at this point in the history
  • Loading branch information
zone117x committed Mar 26, 2014
1 parent 609eb0a commit aa3b960
Show file tree
Hide file tree
Showing 2 changed files with 65 additions and 2 deletions.
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
node_modules/
.idea/
pool_configs/
.idea/
64 changes: 64 additions & 0 deletions pool_configs/darkcoin_example.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
{
"disabled": true,
"coin": "darkcoin.json",

"shareProcessing": {
"internal": {
"enabled": true,
"validateWorkerAddress": true,
"paymentInterval": 10,
"minimumPayment": 100.001,
"minimumReserve": 10,
"feePercent": 0.02,
"feeReceiveAddress": "XfkoYutJ8KYtLxZ4TgnMqC6SCmxuc3LEDY",
"feeWithdrawalThreshold": 5,
"daemon": {
"host": "localhost",
"port": 18342,
"user": "darkcoinrpc1",
"password": "testpass"
},
"redis": {
"host": "localhost",
"port": 6379
}
},
"mpos": {
"enabled": false,
"host": "localhost",
"port": 3306,
"user": "me",
"password": "mypass",
"database": "ltc",
"stratumAuth": "password"
}
},

"address": "XfkoYutJ8KYtLxZ4TgnMqC6SCmxuc3LEDY",
"blockRefreshInterval": 1000,
"txRefreshInterval": 20000,
"connectionTimeout": 600,

"banning": {
"enabled": true,
"time": 600,
"invalidPercent": 50,
"checkThreshold": 500,
"purgeInterval": 300
},

"ports": {
"4073": {
"diff": 0.002
}
},

"daemons": [
{
"host": "localhost",
"port": 18342,
"user": "darkcoinrpc1",
"password": "testpass"
}
]
}

0 comments on commit aa3b960

Please sign in to comment.