Advertisement
Guest User

Untitled

a guest
Apr 21st, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.60 KB | None | 0 0
  1.  
  2. /*
  3. * pool_address - Pool address should be in the form "pool.supportxmr.com:3333". Only stratum pools are supported.
  4. * wallet_address - Your wallet, or pool login.
  5. * rig_id - Rig identifier for pool-side statistics (needs pool support).
  6. * pool_password - Can be empty in most cases or "x".
  7. * use_nicehash - Limit the nonce to 3 bytes as required by nicehash.
  8. * use_tls - This option will make us connect using Transport Layer Security.
  9. * tls_fingerprint - Server's SHA256 fingerprint. If this string is non-empty then we will check the server's cert against it.
  10. * pool_weight - Pool weight is a number telling the miner how important the pool is. Miner will mine mostly at the pool
  11. * with the highest weight, unless the pool fails. Weight must be an integer larger than 0.
  12. *
  13. * We feature pools up to 1MH/s. For a more complete list see M5M400's pool list at www.moneropools.com
  14. */
  15.  
  16. "pool_list" :
  17. [
  18. {"pool_address" : "pool.supportxmr.com:7777", "wallet_address" : "41hsjzjnsfQEHa6U2WtoJmWvJnohSy5zLU1ZYMoueb5L2MwCqCmUAuCZyJViXdPxArDXTWxa7p7dnU2GbeA2eEH5Fu9j6QV", "rig_id" : "1", "pool_password" : "worker", "use_nicehash" : false, "use_tls" : false, "tls_fingerprint" : "", "pool_weight" : 1 },
  19. ],
  20.  
  21. /*
  22. * Currency to mine. Supported values:
  23. *
  24. * aeon7 (use this for Aeon's new PoW)
  25. * cryptonight (try this if your coin is not listed)
  26. * cryptonight_lite
  27. * edollar
  28. * electroneum
  29. * graft
  30. * intense
  31. * karbo
  32. * monero7 (use this for Monero's new PoW)
  33. * sumokoin
  34. *
  35. */
  36.  
  37. "currency" : "cryptonight",
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement