This commit is contained in:
Matthew Little 2014-01-10 18:20:03 -05:00
parent b41dd96826
commit 747f587fbb

View File

@ -48,23 +48,23 @@ 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" * 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 Example configuration for dogecoin.json
```javascript ```javascript
{ {
"name": "Dogecoin", "name": "Dogecoin",
"symbol": "doge", "symbol": "doge",
"algorithm": "scrypt", "algorithm": "scrypt",
"reward": "POW", "reward": "POW",
"address": "DDt79i6P3Wro3SD3HSnkRLpMgUGUGdiNhS", "address": "DDt79i6P3Wro3SD3HSnkRLpMgUGUGdiNhS",
"stratumPort": 3333, "stratumPort": 3333,
"difficulty": 8, "difficulty": 8,
"daemon": { "daemon": {
"bin": "dogecoind", "bin": "dogecoind",
"port": 8332, "port": 8332,
"user": "test", "user": "test",
"password": "test", "password": "test",
"blocknotify": "blockNotify.js doge %s", "blocknotify": "blockNotify.js doge %s",
"startIfOffline": true "startIfOffline": true
}
} }
}
``` ```
* To start the poolserver run init.js * To start the poolserver run init.js
`node init.js` `node init.js`