I'm using the same .conf as the one i use with sph-sgminer_x11mod that work on all pool but have the idle bug here.
{
"pools" : [
... {
"url" : "stratum+tcp://stratum.nicehash.com:3336",
"user" : "btc-add",
"pass" : "p=0.8"
},
...
"kernel" : "darkcoin"
}
Anything wrong in conf or it's just the sgminer not working ?
Edit: in sgminer_v5 you can set algorithm in global section with "algorithm" parameter ("kernel" setting is irrelevant in sgminer_v5 and is actually calculated from "algorithm" setting, default "algorithm" is "scrypt" which by default points to ckolivas kernel)
{
"pools" : [
... {
"url" : "stratum+tcp://stratum.nicehash.com:3336",
"user" : "btc-add",
"pass" : "p=0.8"
},
...
"algorithm" : "darkcoin-mod"
}
You can also set algorithm per pool
{
"pools" : [
... {
"url" : "stratum+tcp://stratum.nicehash.com:3336",
"user" : "btc-add",
"pass" : "p=0.8",
"pool-algorithm" : "darkcoin-mod"
},
...
}