You are on page 1of 2

# Log file path

log_file_path = "grin-miner.log"

# Whether to append to the log file (true), or replace it on every run (false)
log_file_append = true

#########################################
### MINING CLIENT CONFIGURATION ###
#########################################

[mining]

# whether to run the tui


run_tui = true

# listening grin stratum server url


stratum_server_addr = "eu.stratum.grin-pool.org:3416"

# login for the stratum server (if required)


#stratum_server_login = "saifker"

# password for the stratum server (if required)


#stratum_server_password = "rig1"

# whether tls is enabled for the stratum server


stratum_server_tls_enabled = false

#The directory in which mining plugins are installed


#if not specified, grin miner will look in the directory /deps relative
#to the executable

#miner_plugin_dir = "target/debug/plugins"

###############################################################
### CUCKAROO (i.e. GPU-Friendly) MINER PLUGIN CONFIGURATION ###
###############################################################

# Multiple plugins can be specified, (e.g. a cpu


# miner and a gpu miner running in parallel)
# Use a single plugin instance per device, as
# demonstrated below.

[[mining.miner_plugin_config]]
plugin_name = "cuckaroo_cpu_compat_29"
[mining.miner_plugin_config.parameters]
nthreads = 4

# As above, but for processors supporting avx2

#[[mining.miner_plugin_config]]
#plugin_name = "cuckaroo_cpu_avx2_29"
#[mining.miner_plugin_config.parameters]
#nthreads = 4

# CUCKAROO CUDA SOLVER


#
# CUDA plugins are not built by default. To build:
#1) Ensure the latest cuda toolkit is installed
# (nvcc should be in your PATH)
# Wrong gcc? install gcc-5 g++-5; export CC=`which gcc-5`; # then build
#2) Ensure the 'build-cuda-plugin' feature is included in Cargo.toml, e.g:
# cuckoo_miner = { path = "./cuckoo-miner", features = ["build-cuda-plugins"]}
#
# Parameters can be set individually for each device by using multiple
# instance of each plugin. device 0 is used by default
#

You might also like