-
someoneelse49549* monerod is storing the cumulative difficulty as a uint_128t (theoricaly as its boost), but for now the cumulative difficulty (269952836198516580) have reached 1.46% of the total value a uint_64t can take. Is there any chance in a reasonable future that the upper 64 bits can be occupied?
-
selstasomeoneelse49549: monero-project/monero #5239
-
Guest82I'm trying to use monero mining as a form of user authentication/micropayment. The current approach is to use the monerod rpc api and XMrig as a basic mining pool. I need to test if my job validator is working and if my app submits valid shares/blocks. Since it takes too long to verify this on mainnet I'm currently syncing Stagenet to see if the
-
Guest82difficulty is low enough to confirm any of my shares. Is this the right way of going about the task, or how would I test my miner/app with lower target difficulty?
-
moneromoooYou can run with --offline --fixed-difficulty N. I do that. Very useful.
-
moneromoooAlso, if you've not already seen it: repo.getmonero.org/selene/primo
-
RaydarAwesome thank you @moneromoo!
-
Raydaryes, that project does look quite similar to what I'm doing. :D
-
merope1You might want to submit shares to p2pool-mini instead of the daemon, for better payout consistency
-
RaydarHi merope1. I did consider that but I think it doesn't quite fit my use case. My app communicates on i2p only. As far as I understand p2pool can't do that quite yet. That's why I'm trying the long route of creating the own pool.