bonesoul / CoiniumServ

Next-gen crypto currency mining pool software
Other
797 stars 494 forks source link

Scrypt ASIC Difficulty #1027

Open DoseHombres opened 6 years ago

DoseHombres commented 6 years ago

So I got my scrypt pool setup for solo use and it working great with my Moonlanders! I decided to buy some extra hashing power and fired an L3+ at my pool. This is the error I'm getting from the rig rental service:

The OPTIMAL Difficulty range for this rig is 81,635 - 490k

Any ideas what I should change my vardiff to? I tried setting the min to 16384 and that didn't even work.

Thanks

robbterr commented 6 years ago

i´m using this:

    "stratum": {
            "enabled": true,
            "bind": "0.0.0.0",
            "port": 3334,
            "diff": 65536,
    "vardiff": {
        "enabled": true,
        "minDiff": 512,
        "maxDiff": 1048576,
        "targetTime": 15,
        "retargetTime": 90,
        "variancePercent": 30
    }
    },
flyx2888 commented 6 years ago

Try:

"stratum": {
        "enabled": true,
        "bind": "0.0.0.0",
        "port": 3334,
        "diff": 102400,
"vardiff": {
    "enabled": true,
    "minDiff": 81920,
    "maxDiff": 489472,
    "targetTime": 15,
    "retargetTime": 90,
    "variancePercent": 30
}
},

Looks like your rental service is looking for that specific range.

DoseHombres commented 6 years ago

Thanks everyone! Seems now I'm facing the same issue you had robbterr. The miner just keeps connecting and disconnecting.. Did you ever resolve that issue?

robbterr commented 6 years ago

Hi,

sorry, i did not see your message.

Yes, i think i fixed the problems, i implemented the missing calls and it seems to work.

https://github.com/robbterr/CoiniumServ/commit/7b023078f390cdee70aaaeb9f9f9bf712109e896

lg