This commit is contained in:
Matthew Little 2014-01-10 18:21:11 -05:00
parent 747f587fbb
commit c09ecccff3

View File

@ -47,24 +47,24 @@ Installation
------------
* For each coin you would like to start a pool server for, create a file in the "coins" directory titled "(name of coin).json"
Example configuration for dogecoin.json
```javascript
{
```json
{
"name": "Dogecoin",
"symbol": "doge",
"algorithm": "scrypt",
"reward": "POW",
"address": "DDt79i6P3Wro3SD3HSnkRLpMgUGUGdiNhS",
"stratumPort": 3333,
"stratumPort": 3334,
"difficulty": 8,
"daemon": {
"bin": "dogecoind",
"port": 8332,
"user": "test",
"password": "test",
"blocknotify": "blockNotify.js doge %s",
"startIfOffline": true
"bin": "dogecoind",
"port": 8332,
"user": "test",
"password": "test",
"blocknotify": "blockNotify.js doge %s",
"startIfOffline": true
}
}
}
```
* To start the poolserver run init.js
`node init.js`