Is something wrong with suchpool? None of my miners will connect to it this morning... it just says waiting for work and then setting GPU to idle performance and finally restarts and does it all again.
Try these, you can set up multiple pools and they pay straight to your wallet no need for an account:
stratum+tcp://pool1.relentlesspool.com:9441
Amsterdamstratum+tcp://pool2.relentlesspool.com:9441
Amsterdamstratum+tcp://pool3.relentlesspool.com:9441
Amsterdamstratum+tcp://pool4.relentlesspool.com:9441
New Yorkstratum+tcp://pool5.relentlesspool.com:9441
New Yorkstratum+tcp://pool6.relentlesspool.com:9441
Singaporestratum+tcp://pool7.relentlesspool.com:9441
Singaporestratum+tcp://pool8.relentlesspool.com:9441
LondonPick the one that pings fastest for you then use your wallet address as the username and anything you like as password.
The p2pool is shared across all p2pools not just these so they work really well as you get the luck of the entire p2pool not just that specific node.
A one liner example would be:
sgminer -k darkcoin -o stratum+tcp://pool1.relentlesspool.com:9441 -u -p x --failover-only -o stratum+tcp://pool2.relentlesspool.com:9441 -u -p x -I 13 -g 2 --lookup-gap 2 -w 256 --thread-concurrency 8192
If you're using a conf file then something like this:
"pools" : [
{
"name" : "Preferred Pool",
"url" : "stratum+tcp://pool1.relentlesspool.com:9441",
"user" : "wallet address",
"pass" : "x",
"pool-priority" : "0"
},
{
"name" : "Failover Pool",
"url" : "stratum+tcp://pool2.relentlesspool.com:9441",
"user" : "wallet address",
"pass" : "x",
"pool-priority" : "1"
},
{
"name" : "Failover Pool",
"url" : "stratum+tcp://pool3.relentlesspool.com:9441",
"user" : "wallet address",
"pass" : "x",
"pool-priority" : "2"
},
{
"name" : "Testing Pool",
"url" : "stratum+tcp://pool4.relentlesspool.com:9441",
"user" : "wallet address",
"pass" : "x",
"pool-priority" : "3"
},
{
"name" : "Testing Pool",
"url" : "stratum+tcp://pool5.relentlesspool.com:9441",
"user" : "wallet address",
"pass" : "x",
"pool-priority" : "4"
},
{
"name" : "Testing Pool",
"url" : "stratum+tcp://pool6.relentlesspool.com:9441",
"user" : "wallet address",
"pass" : "x",
"pool-priority" : "5"
},
{
"name" : "Testing Pool",
"url" : "stratum+tcp://pool7.relentlesspool.com:9441",
"user" : "wallet address",
"pass" : "x",
"pool-priority" : "6"
},
{
"name" : "Testing Pool",
"url" : "stratum+tcp://pool8.relentlesspool.com:9441",
"user" : "wallet address",
"pass" : "x",
"pool-priority" : "7"
}
],