Advertisement
Guest User

Monero

a guest
Jan 25th, 2017
192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.70 KB | None | 0 0
  1. /* Module that sends payments to miners according to their submitted shares. */
  2. "payments": {
  3. "enabled": true,
  4. "interval": 600, //how often to run in seconds
  5. "maxAddresses": 50, //split up payments if sending to more than this many addresses
  6. "mixin": 3, //number of transactions yours is indistinguishable from
  7. "transferFee": 5000000000, //fee to pay for each transaction
  8. "minPayment": 100000000000, //miner balance required before sending payment
  9. "denomination": 100000000000 //truncate to this precision and store remainder
  10. },
  11.  
  12. /* Module that monitors the submitted block maturities and manages rounds. Confirmed
  13. blocks mark the end of a round where workers' balances are increased in proportion
  14. to their shares. */
  15. "blockUnlocker": {
  16. "enabled": true,
  17. "interval": 30, //how often to check block statuses in seconds
  18.  
  19. /* Block depth required for a block to unlocked/mature. Found in daemon source as
  20. the variable CRYPTONOTE_MINED_MONEY_UNLOCK_WINDOW */
  21. "depth": 60,
  22. "poolFee": 1.8, //1.8% pool fee (2% total fee total including donations)
  23. "devDonation": 0.1, //0.1% donation to send to pool dev - only works with Monero
  24. "coreDevDonation": 0.1 //0.1% donation to send to core devs - only works with Monero
  25. },
  26.  
  27. /* AJAX API used for front-end website. */
  28. "api": {
  29. "enabled": true,
  30. "hashrateWindow": 600, //how many second worth of shares used to estimate hash rate
  31. "updateInterval": 3, //gather stats and broadcast every this many seconds
  32. "port": 8117,
  33. "blocks": 30, //amount of blocks to send at a time
  34. "payments": 30, //amount of payments to send at a time
  35. "password": "test" //password required for admin stats
  36. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement