tutulino / Megaminer

Multipool and multialgo windows miner
GNU General Public License v3.0
78 stars 69 forks source link

Ahashpool changed units for some algorithms #422

Closed Kelarik closed 6 years ago

Kelarik commented 6 years ago

From their site: "changed the units of keccak, keccakc, nist5, lbry, skein to mBTC/Gh/day" Was wondering why my rig was suddenly reporting over €1000/day per 1080Ti

Mpx1 commented 6 years ago

You can update AHASHPOOL.ps1 file - between lines

$Divisor = (Get_Algo_Divisor $Aha_Algorithm) / 1000

$Result+=[PSCustomObject]@{

insert following code:

                            switch ($Aha_Algorithm){
                                "keccak"{$Divisor *= 1000}
                                "keccakc"{$Divisor *= 1000}
                                "nist5"{$Divisor *= 1000}
                                "lbry"{$Divisor *= 1000}
                                "skein"{$Divisor *= 1000}
                                }
tutulino commented 6 years ago

Test master branch code