hope someone can help me out here please! When loading the miner this line keeps repeating itself in the command prompt
JSON decode failed(1): '[' or '{' expected near 'HTTP'
It still seems to be mining but I don't know what effect this may have, does anyone know how to fix this error? I have copied my .bat settings below (except crossed out my monero address):
rem this is a helper script to start xmrMiner
rem the word "rem" at the beginning of a line is a line with a comment
rem please substitude with you Monero adress
set xmrAddress=
rem passwort for your mining pool (very often only a x)
set poolPassword=x
rem mining pool webaddress
set poolUrl=stratum+tcp://xmr.crypto-pool.fr:80
rem set here the launch param to tune xmrMiner (see xmrMiner_VERSION.exe --help), e.g. --launch=8x3
rem example: set launchParam=--launch=64x3
set launchParam=
rem greater value means more interactivity of your system but lower hash rate
set bFactor=10
rem time between a kernel start
set bSleep=25
xmrMiner_0.2.1.exe --url=%poolUrl% -u %xmrAddress% -p %poolPassword% %launchParam% --bfactor=%bFactor% --bsleep=%bSleep%
pause