How does the network regulate to 360 blocks/day.
-
Specifically? I don't understand how the base target feeds into the hashing of your plotted files to insure the DLs for the whole network regulate for the 4 min/block average.
-
Moved away from the software section.
-
Miner get from pool (wallet) BaseTarget.
Then miner try to find best hash from plots.
hash / BaseTarget = deadline (like here https://github.com/Blagodarenko/miner-burst/blob/master/miner.cpp#L1341)
But send to the pool only number of nonce and ID.
Pool make the same operation - calculate hash and divide by BaseTarget - got deadline.how wallet calculate new BaseTarget:
https://github.com/BurstProject/burstcoin/blob/master/src/java/nxt/BlockImpl.java#L502
-
OK, got it. Thanks.