Just FYI to interested people, this coding works for LolMiner v1.88 to mine CDY:
*Do not forget to change your "POOL" and "WALLET" in this code (unless, of course, you would like to mine for me )
Happy mining!
D
*Do not forget to change your "POOL" and "WALLET" in this code (unless, of course, you would like to mine for me )
@echo off
setlocal enableDelayedExpansion
Rem #################################
Rem ## Begin of user-editable part ##
Rem #################################
set "POOL=connect.candypool.bitcoinbookmarks.com:3857"
set "WALLET=CdC46y62y1WMrSHwLx4erGip7GPD1yTRWT"
set "ALGO=EQUI144_5"
set "PERSONALIZATION=CandyPoW"
set "EXTRAPARAMETERS=--apiport 8020"
Rem #################################
Rem ## End of user-editable part ##
Rem #################################
cd /d %~dp0
set MyVariable=%CD%\lolMiner.exe
:WindowsVer
echo "Running lolMiner from %MyVariable%"
for /f "tokens=4-5 delims=. " %%i in ('ver') do set VERSION=%%i.%%j
if "%version%" == "10.0" goto W10
goto OtherW
:W10
"%MyVariable%" -a !ALGO! --pers !PERSONALIZATION! --pool !POOL! --user !WALLET! --watchdog exit !EXTRAPARAMETERS!
if %ERRORLEVEL% == 42 (
timeout 10
goto W10
)
goto END
:OtherW
"%MyVariable%" -a !ALGO! --pers !PERSONALIZATION! --pool !POOL! --user !WALLET! --watchdog exit !EXTRAPARAMETERS! --nocolor
if %ERRORLEVEL% == 42 (
timeout 10
goto OtherW
)
:END
pause
Happy mining!
D