Thank you for releasing the source for pools! I will check it out and maybe make a pool. Good job

About pools, if anyone is just interested in connecting ccminer or something,
https://github.com/forknote/forknote-pool.gitworks quite well.
Short setup:
- install node v0.10.48 and redis (and gcc-5!)
- install forknote-pool (see README.md)
- run eurobitd
- run simplewallet with rpc enabled:
$ ./simplewallet --rpc-bind-ip 127.0.0.1 --rpc-bind-port 1111 --wallet-file wallet --password password
- edit config.json (settings not mentioned are not coin specific, just check forknote-pool's README.md)
{
"coin": "eurobit",
"symbol": "EUR",
"coinUnits": 100000000,
"poolServer": {
"poolAddress": "",
}
"payments": {
"mixin": 0,
"transferFee": 100000,
"minPayment": 10000000000,
"denomination": 100000000
"blockUnlocker": {
"depth": 5,
"devDonation": 0,
"coreDevDonation": 0,
"daemon": {
"host": "127.0.0.1",
"port": 8081
},
"wallet": {
"host": "127.0.0.1",
"port": 1111
},
then, start it
$ node init.js
and enjoy
$ ./ccminer -o stratum+tcp://yourpool:3333 -u -p x
HTH
Also not too sure about this but I would suggest using walletd for services but simplewallet could work fine too I suppose