From aa3b960512fec3edc4470b69a0495f2e5dc9f1ed Mon Sep 17 00:00:00 2001 From: Matt Date: Wed, 26 Mar 2014 16:35:55 -0600 Subject: [PATCH] Added more example configs --- .gitignore | 3 +- pool_configs/darkcoin_example.json | 64 ++++++++++++++++++++++++++++++ 2 files changed, 65 insertions(+), 2 deletions(-) create mode 100644 pool_configs/darkcoin_example.json diff --git a/.gitignore b/.gitignore index ccd8331..d35bbf7 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,2 @@ node_modules/ -.idea/ -pool_configs/ \ No newline at end of file +.idea/ \ No newline at end of file diff --git a/pool_configs/darkcoin_example.json b/pool_configs/darkcoin_example.json new file mode 100644 index 0000000..0ab86a5 --- /dev/null +++ b/pool_configs/darkcoin_example.json @@ -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" + } + ] +} \ No newline at end of file