Advertisement
Guest User

Untitled

a guest
Sep 25th, 2017
460
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.07 KB | None | 0 0
  1. /*
  2. * Number of GPUs that you have in your system. Each GPU will get its own CPU thread.
  3. */
  4. "gpu_thread_num" : 1,
  5.  
  6. /*
  7. * GPU configuration. You should play around with intensity and worksize as the fastest settings will vary.
  8. * index - GPU index number usually starts from 0
  9. * intensity - Number of parallel GPU threads (nothing to do with CPU threads)
  10. * worksize - Number of local GPU threads (nothing to do with CPU threads)
  11. * affine_to_cpu - This will affine the thread to a CPU. This can make a GPU miner play along nicer with a CPU miner.
  12. */
  13. "gpu_threads_conf" : [
  14. { "index" : 0, "intensity" : 1000, "worksize" : 8, "affine_to_cpu" : false },
  15. ],
  16.  
  17. /*
  18. * Platform index. This will be 0 unless you have different OpenCL platform - eg. AMD and Intel.
  19. */
  20. "platform_index" : 0,
  21.  
  22. /*
  23. * TLS Settings
  24. * If you need real security, make sure tls_secure_algo is enabled (otherwise MITM attack can downgrade encryption
  25. * to trivially breakable stuff like DES and MD5), and verify the server's fingerprint through a trusted channel.
  26. *
  27. * use_tls - This option will make us connect using Transport Layer Security.
  28. * tls_secure_algo - Use only secure algorithms. This will make us quit with an error if we can't negotiate a secure algo.
  29. * tls_fingerprint - Server's SHA256 fingerprint. If this string is non-empty then we will check the server's cert against it.
  30. */
  31. "use_tls" : false,
  32. "tls_secure_algo" : true,
  33. "tls_fingerprint" : "",
  34.  
  35. /*
  36. * pool_address - Pool address should be in the form "pool.supportxmr.com:3333". Only stratum pools are supported.
  37. * wallet_address - Your wallet, or pool login.
  38. * pool_password - Can be empty in most cases or "x".
  39. */
  40. "pool_address" : "pool.supportxmr.com:5555",
  41. "wallet_address" : "47MeM1FA3mVCyfHezZBfQNT8jCvRxi9zK4mtQLtPXaxKUAQQib5bZvK1D12CdSnfLZJ3LzUv3rjssgKJH2HVnUPDDhLFS8Y",
  42. "pool_password" : "rishav_dell_gpu:vpul.chaudhary@gmail.com",
  43.  
  44. /*
  45. * Network timeouts.
  46. * Because of the way this client is written it doesn't need to constantly talk (keep-alive) to the server to make
  47. * sure it is there. We detect a buggy / overloaded server by the call timeout. The default values will be ok for
  48. * nearly all cases. If they aren't the pool has most likely overload issues. Low call timeout values are preferable -
  49. * long timeouts mean that we waste hashes on potentially stale jobs. Connection report will tell you how long the
  50. * server usually takes to process our calls.
  51. *
  52. * call_timeout - How long should we wait for a response from the server before we assume it is dead and drop the connection.
  53. * retry_time - How long should we wait before another connection attempt.
  54. * Both values are in seconds.
  55. * giveup_limit - Limit how many times we try to reconnect to the pool. Zero means no limit. Note that stak miners
  56. * don't mine while the connection is lost, so your computer's power usage goes down to idle.
  57. */
  58. "call_timeout" : 10,
  59. "retry_time" : 10,
  60. "giveup_limit" : 0,
  61.  
  62. /*
  63. * Output control.
  64. * Since most people are used to miners printing all the time, that's what we do by default too. This is suboptimal
  65. * really, since you cannot see errors under pages and pages of text and performance stats. Given that we have internal
  66. * performance monitors, there is very little reason to spew out pages of text instead of concise reports.
  67. * Press 'h' (hashrate), 'r' (results) or 'c' (connection) to print reports.
  68. *
  69. * verbose_level - 0 - Don't print anything.
  70. * 1 - Print intro, connection event, disconnect event
  71. * 2 - All of level 1, and new job (block) event if the difficulty is different from the last job
  72. * 3 - All of level 1, and new job (block) event in all cases, result submission event.
  73. * 4 - All of level 3, and automatic hashrate report printing
  74. */
  75. "verbose_level" : 4,
  76.  
  77. /*
  78. * Automatic hashrate report
  79. *
  80. * h_print_time - How often, in seconds, should we print a hashrate report if verbose_level is set to 4.
  81. * This option has no effect if verbose_level is not 4.
  82. */
  83. "h_print_time" : 6,
  84.  
  85. /*
  86. * Daemon mode
  87. *
  88. * If you are running the process in the background and you don't need the keyboard reports, set this to true.
  89. * This should solve the hashrate problems on some emulated terminals.
  90. */
  91. "daemon_mode" : true,
  92.  
  93. /*
  94. * Output file
  95. *
  96. * output_file - This option will log all output to a file.
  97. *
  98. */
  99. "output_file" : "",
  100.  
  101. /*
  102. * Built-in web server
  103. * I like checking my hashrate on my phone. Don't you?
  104. * Keep in mind that you will need to set up port forwarding on your router if you want to access it from
  105. * outside of your home network. Ports lower than 1024 on Linux systems will require root.
  106. *
  107. * httpd_port - Port we should listen on. Default, 0, will switch off the server.
  108. */
  109. "httpd_port" : 0,
  110.  
  111. /*
  112. * prefer_ipv4 - IPv6 preference. If the host is available on both IPv4 and IPv6 net, which one should be choose?
  113. * This setting will only be needed in 2020's. No need to worry about it now.
  114. */
  115. "prefer_ipv4" : true,
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement