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
for most ethash miner cases, the last true paramter is not used (for example the opensource ethminer do not utilize it at all), so it is almost safe to add the block height info as the fourth parameter, and it can be easily detectable.
ProgPoW generate its kernel every 50 blocks and
period_seed = height / 50
is used as a random seed.to support ProgPoW, EthereumStratum/1.0.0
mining.notifiy
need to be fixed like as follow(for example)
original
height info added for ProgPoW
for most ethash miner cases, the last
true
paramter is not used (for example the opensource ethminer do not utilize it at all), so it is almost safe to add the block height info as the fourth parameter, and it can be easily detectable.maybe the second seedhash parameter is duplicated information and one can try to replace the second parameter to the block height (like as EthereumStratum/2.0.0 https://github.com/ethereum/EIPs/blob/master/EIPS/eip-1571.md )
The text was updated successfully, but these errors were encountered: