Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2019
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.40 KB | None | 0 0
  1. {
  2. "algo": "cryptonight-extremelite", // cryptonight (default), cryptonight-lite, cryptonight-ultralite, cryptonight-extremelite or cryptonight-heavy
  3. "aesni": 0, // selection of AES-NI mode (0 auto, 1 on, 2 off)
  4. "threads": 8, // number of miner threads (not set or 0 enables automatic selection of optimal thread count)
  5. "multihash-factor": 2, // number of hash blocks to process at a time (not set or 0 enables automatic selection of optimal number of hash blocks)
  6. "multihash-thread-mask" : null, // for multihash-factors>0 only, limits multihash to given threads (mask), mask "0x3" means run multihash on thread 0 and 1 only (default: all threads)
  7. "pow-variant" : "upx2", // specificy the PoW variat to use: -> auto (default), '0', '1', '2', 'ipbc', 'xao', 'xtl', 'rto', 'xfh', 'upx', 'turtle', 'hosp', 'r', 'wow', 'double (xcash)', 'zls' (zelerius), 'rwz' (graft), 'upx2'
  8. // for further help see: https://github.com/Bendr0id/xmrigCC/wiki/Coin-configurations
  9. "asm-optimization" : "auto", // specificy the ASM optimization to use: -> auto (default), intel, ryzen, bulldozer, off
  10. "background": false, // true to run the miner in the background (Windows only, for *nix plase use screen/tmux or systemd service instead)
  11. "colors": true, // false to disable colored output
  12. "cpu-affinity": null, // set process affinity to CPU core(s), mask "0x3" for cores 0 and 1
  13. "cpu-priority": null, // set process priority (0 idle, 2 normal to 5 highest)
  14. "donate-level": 5, // donate level, mininum 1%
  15. "log-file": null, // log all output to a file, example: "c:/some/path/xmrig.log"
  16. "max-cpu-usage": 100, // maximum CPU usage for automatic mode, usually limiting factor is CPU cache not this option.
  17. "print-time": 60, // print hashrate report every N seconds
  18. "retries": 5, // number of times to retry before switch to backup server
  19. "retry-pause": 5, // time to pause between retries
  20. "safe": false, // true to safe adjust threads and av settings for current CPU
  21. "syslog": false, // use system log for output messages
  22. "reboot-cmd" : "", // command to execute to reboot the OS
  23. "force-pow-variant" : false, // force pow variant, dont parse pow/variant from pool job
  24. "skip-self-check" : false, // skip the self check on startup
  25. "pools": [
  26. {
  27. "url": "upx2.poolbux.com:3333", // URL of mining server
  28. "user": "xxx", // username for mining server
  29. "pass": "Gaming01_CPU", // password for mining server
  30. "use-tls" : false, // enable tls for pool communication (need pool support)
  31. "keepalive": true, // send keepalived for prevent timeout (need pool support)
  32. "nicehash": false // enable nicehash/xmrig-proxy support
  33. }
  34. ],
  35. "cc-client": null,
  36. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement