minerd.toml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. ## minerd configuration file
  2. ##
  3. ## Please make sure you go through all the settings so you can configure
  4. ## your daemon properly.
  5. ##
  6. ## The default values are left commented. They can be overridden either by
  7. ## uncommenting, or by using the command-line.
  8. # Number of nonces to execute in system hashrate benchmark
  9. #bench = 1000
  10. # Flag indicating whether to run miner in light mode
  11. light_mode = false
  12. # Flag indicating whether to run miner with Large Pages
  13. large_pages = false
  14. # Flag indicating whether to run miner with secure access to JIT memory (if supported)
  15. secure = false
  16. # PoW miner number of threads to use
  17. #threads = 4
  18. # Polling rate to ask darkfid for mining jobs
  19. #polling_rate = 2
  20. # Stop mining at given height (0 mines forever)
  21. #stop_at_height = 0
  22. # Blockchain network to use
  23. network = "localnet"
  24. # Localnet blockchain network configuration
  25. [network_config."localnet"]
  26. # Wallet mining address to receive mining rewards.
  27. # This is a dummy one so the miner can start,
  28. # replace with your own one.
  29. recipient = "DZnsGMCvZU5CEzvpuExnxbvz6SEhE2rn89sMcuHsppFE6TjL4SBTrKkf"
  30. # Optional contract spend hook to use in the mining reward.
  31. # This is the DAO spend hook set for convinience,
  32. # replace with your own one.
  33. #spend_hook = "6iW9nywZYvyhcM7P1iLwYkh92rvYtREDsC8hgqf2GLuT"
  34. # Optional contract user data to use in the mining reward.
  35. # This is not arbitrary data.
  36. #user_data = "YOUR_USER_DATA_HERE"
  37. # darkfid JSON-RPC endpoint
  38. endpoint = "tcp://127.0.0.1:48240"