Bitcoin Forum

Alternate cryptocurrencies => Mining (Altcoins) => Topic started by: rodney2250 on September 10, 2018, 07:27:55 AM



Title: ethash, CPU miner with stratum support
Post by: rodney2250 on September 10, 2018, 07:27:55 AM
does anybody have, or know where to dl, an ethash, CPU miner with stratum support?
I am working on varDiff algo for OEP but need something “portable” than can run on my dev VMs
currentyl I am using an ethminer fork, but it lacks stratum

thanks


Title: Re: ethash, CPU miner with stratum support
Post by: cudapop on September 10, 2018, 09:11:01 AM
Have you tried using the older C2 fork of Genoil's Ethminer? https://github.com/Genoil/cpp-ethereum/tree/c2/ethminer
That code fork still has CPU mining and stratum support.


Title: Re: ethash, CPU miner with stratum support
Post by: rodney2250 on September 10, 2018, 11:37:08 AM
Have you tried using the older C2 fork of Genoil's Ethminer? https://github.com/Genoil/cpp-ethereum/tree/c2/ethminer
That code fork still has CPU mining and stratum support.

Thanks for the tip. So I need to compile the c2 branch?

How about the params? The only examples on that page are for AMD and CUDA


Title: Re: ethash, CPU miner with stratum support
Post by: cudapop on September 10, 2018, 12:00:15 PM
Yes, build it with the "-DBUNDLE=miner" cmake param, it'll include the code for CPU mining.

Then when you run the "ethminer" executable, use the "-C" runtime param so it executes CPU mining.


Title: Re: ethash, CPU miner with stratum support
Post by: rodney2250 on September 10, 2018, 12:27:50 PM
Yes, build it with the "-DBUNDLE=miner" cmake param, it'll include the code for CPU mining.

Then when you run the "ethminer" executable, use the "-C" runtime param so it executes CPU mining.

Thank you!!! I will give it a go later today.


Title: Re: ethash, CPU miner with stratum support
Post by: rodney2250 on September 11, 2018, 11:04:37 AM
Yes, build it with the "-DBUNDLE=miner" cmake param, it'll include the code for CPU mining.

Then when you run the "ethminer" executable, use the "-C" runtime param so it executes CPU mining.

I managed to compile it but for some weird reason it could not connect to the pool while using the stratum. I ended up finding a stratum proxy which fixed my issue.


Title: Re: ethash, CPU miner with stratum support
Post by: cudapop on September 11, 2018, 11:54:18 AM
This was using the "-S" param right? What was the command line you used?