You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In order to use Bitcoin.cz (slush) effectively, it is necessary to start mining immediately after a new block is found to get in during the first "10 percent" of shares. The shares move fast because of the high GH/s rate of the pool so it is necessary to react fast. This worked fine on the old scheduler, but on the new slice based schedulers, enough time elapses between slices that the window of opportunity is gone.
The code in scheduler.py - select_best_server needs to be modified to check if the slush pool is ripe for picking (lower than the .43/10 range) and choose that pool to the exclusion of all others. This needs to happen during every pass through the code and not just during reslices.
The text was updated successfully, but these errors were encountered:
Um select best server will default to new servers first. Like slush. The issue is it only checks once very 30 seconds. I can write in some changes though.
In order to use Bitcoin.cz (slush) effectively, it is necessary to start mining immediately after a new block is found to get in during the first "10 percent" of shares. The shares move fast because of the high GH/s rate of the pool so it is necessary to react fast. This worked fine on the old scheduler, but on the new slice based schedulers, enough time elapses between slices that the window of opportunity is gone.
The code in scheduler.py - select_best_server needs to be modified to check if the slush pool is ripe for picking (lower than the .43/10 range) and choose that pool to the exclusion of all others. This needs to happen during every pass through the code and not just during reslices.
The text was updated successfully, but these errors were encountered: