Post
Topic
Board Mining (Altcoins)
Re: [ANN] cudaMiner - a new litecoin mining application [Windows/Linux]
by
ManIkWeet
on 28/02/2014, 16:39:45 UTC
do you mind if i post my settings so you can see troubleshoot me quick?

cudaminer.exe -o stratum+tcp://minercrew.org:3336 -u help.user -p password
-o stratum+tcp://pool.yourmine.org:3340 -u help.user -p password
cudaminer.exe -d 0,1,2 -i 1,0,0 -l auto,S27x3,28x4 -C 0,2,1

i want to add more pools after, but can i get it to switch pools, if say.. 1 doesnt work for a min straight?
how would i do that. thanks
Something like:
Code:
:loop
cudaminer.exe -R 10 -r 6 -d 0,1,2 -i 1,0,0 -l auto,S27x3,28x4 -C 0,2,1 -o stratum+tcp://minercrew.org:3336 -u help.user -p password
cudaminer.exe -R 5 -r 6 -d 0,1,2 -i 1,0,0 -l auto,S27x3,28x4 -C 0,2,1 -o stratum+tcp://pool.yourmine.org:3340 -u help.user -p password
goto loop
The first line is a .bat indication that a piece of code starts there.
The second line would retry the connection every 10 seconds, for 6 times (so 60 seconds)
The third line would retry the connection ever 5 seconds, for 6 times (so 30 seconds total)
The fourth line would tell the .bat to go to the indication at line 1

This is the best you can do with CudaMiner for now.