Post
Topic
Board Mining (Altcoins)
Re: SRBMiner Cryptonight AMD GPU Miner V1.5.0
by
JuanHungLo
on 01/05/2018, 13:23:11 UTC
Quote
{
"cryptonight_type" : "heavy",
"intensity" : 0,
"double_threads" : false,
"target_temperature" : 0,
"pool_use_tls" : true,
"pool" : "haven.miner.rocks:5555",
"wallet" : "YOUR_WALLET_ADDRESS",
"password" : "w=Rig1",
"location" : "europe",
"log_file" : "",
}

tried that. this is now my start file




clicking the start file does nothing i have to click on the SRBminer-CN.exe file to get it to start. is that correct?

this is still giving me the v7 algo rather than heavy, and i just get rejected shares because the miner is sending wrong shares to the pool

No, that is not correct.
The start.bat file should contain something like this:
Quote
setx GPU_FORCE_64BIT_PTR 1
setx GPU_MAX_HEAP_SIZE 100
setx GPU_MAX_USE_SYNC_OBJECTS 1
setx GPU_MAX_ALLOC_PERCENT 100
setx GPU_MAX_SINGLE_ALLOC_PERCENT 100
@echo off

cls
SETLOCAL EnableExtensions
set EXE=SRBMiner-CN.exe

:START
FOR /F %%x IN ('tasklist /NH /FI "IMAGENAME eq %EXE%"') DO IF %%x == %EXE% goto RUNNING
%EXE% --config config.txt --pools pools.txt --logfile log.txt
TIMEOUT /T 15 /NOBREAK
goto START
:RUNNING
echo "%EXE% is already running"
pause

The config.txt file should contain something like this:
Quote
/* Type can be : normal, normalv7, lite, litev7, heavy, ipbc, artocash  */
"cryptonight_type" : "normalv7",

/* Intensity 0-> auto intensity, or value from 1-300  */
"intensity" : 0,

/* To use 2 threads per card set double_threads to true  */
"double_threads" : true,

/* Uncomment this if you want to set GPU target temperature  */
/*"target_temperature" : 0,*/

/* Uncomment this if you want to set system shutdown temperature  */
/*"shutdown_temperature" : 90,*/

/* Uncomment this if you don't want to use the built in watchdog, but you want a script to run on GPU fail */
/* If you use the reboot-windows.bat it will restart your computer if a GPU fail occurs */
/*"reboot_script" : "reboot-windows.bat",*/

/* Advanced settings for each GPU manually */
/* Put in devices that you want to use, if you for ex. don't want to use gpu 2, just don't insert it,like in this example */
/* Id starts from 0 , not from 1 !! */
/* To get a list of available devices with their id's, use --listdevices parameter */
/* This is just an example, edit it and remove comment lines !! */

"gpu_conf" :
[
   { "id" : 0, "intensity" : 112, "worksize" : 16, "threads" : 2},
   { "id" : 1, "intensity" : 112, "worksize" : 16, "threads" : 2},
   { "id" : 2, "intensity" : 112, "worksize" : 16, "threads" : 2},
]
}

The pools.txt should contain something like this:
Quote
{
"pools" :
[
   {"pool_use_tls" : false, "keepalive" : false, "pool" : "stellite.ingest.cryptoknight.cc:16223", "wallet" : "
", "password" : "x", "location" : "usa"},
]
}

when those 3 files are saved, you click the start.bat and it will run.