i think you should try the same pool you tried with TRM, but without Awesome miner, just directly.
If that still doesnt make any shares, then its the 18.8.2 driver, it probably creates a bad kernel, so that's why no shares found.
Im 100% sure if you ddu and reinstall 18.6.1 the recommended ones, that is will work.
i had a miner with 18.3.4.. where is instant got accepts
there is small but
Configuration:
{
"cryptonight_type": "normalv8",
"reboot_script_gpu_watchdog": "awesome-restart.bat"
}
Configured command line:
-usealgoswitching --resetmineronalgoswitch
why is the cryptonight_type normalv8, i only use -usealgoswitching --resetmineronalgoswitch
hashrate is acceptable 1.9Kh.. is it in algo switching or not?
i am mining on MoneroOcean, but i think its mining on V8
am i doing something wrong
Ok, so let's suppose you want to do normal algo switching on Monero Ocean pools.
It is explained how-to on the first page and on
https://srbminer.com/algoswitching.htmlBut ok, in short :
1. Fill the algos.txt file with the algos you want the pool to use, and the hashrate you get per rig, example :
{
"algos" :
[
{
"algo" : "normalv8",
"config" : "Config\\config-normalv8.txt",
"hashrate" : 12000,
"startup_script": ""
},
{
"algo" : "normalv7",
"config" : "Config\\config-normalv7.txt",
"hashrate" : 13000,
"startup_script": ""
},
{
"algo" : "heavy",
"config" : "Config\\config-heavy.txt",
"hashrate" : 9000,
"startup_script": ""
},
{
"algo" : "haven",
"config" : "Config\\config-haven.txt",
"hashrate" : 9000,
"startup_script": ""
},
.
.
.
.
. and so on
]
}
You must define V8.
Every config field points to a config specific for that algo. Example:
config-normalv8.txt{
"cryptonight_type" : "normalv8",
"intensity" : 112,
"worksize" : 16,
"double_threads" : true,
"off_temperature" : 80
}
What the big letters say :
It is VERY IMPORTANT to use config files here, and not set GPU's and pool in command line.If you do so, miner will not start.
Also if you are using the pool controlled algo switching, DON'T set cryptonight_type for that pool, because you could get into an endless loop of algo switching
Then you just start the miner with :
SRBMiner-CN.exe --config Config\config-normalv8.txt --pools Pools\pools-algoswitch.txt --usealgoswitching
Of course you set the Monero Ocean pool in the pools-algoswitch :
{
"pools" :
[
{
"pool" : "de.moneroocean.stream:10032",
"wallet" : "your-monero-wallet",
"password" : "x"
}
}