Post
Topic
Board Mining (Altcoins)
Re: Megaminer 5.0b - Multi pool / Multi Algo launcher
by
dudel42
on 16/01/2018, 14:26:34 UTC
I would like to use ZPool as a backup pool only when the main pool is offline. I guess the easiest way to implement would be to divide all the profits by 10, so the main pool would always appear more profitable.

Any drawback to that solution by just adding a zero to the end of the divisor? Only one I can think of right now is forgetting about it when updating the scripts -- so a custom multiplier per pool in the config would be nice...

At this moment divide the profits is good solution.

Code:
                $Request | Get-Member -MemberType properties| ForEach-Object {
                               
                                $coin=$Request | Select-Object -ExpandProperty $_.name

                                $Zpool_Algo =  get_algo_unified_name ($_.name)

                           
                                $Divisor = (Get_Algo_Divisor $Zpool_Algo) / 1000

Is this the correct place? I'll change it to divide by 10000, so it should always be less than other pool...