Spaces:
Running
Running
Create miner-config.bat
Browse files- miner-config.bat +23 -0
miner-config.bat
ADDED
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
@echo off
|
2 |
+
|
3 |
+
setlocal enableDelayedExpansion
|
4 |
+
|
5 |
+
Rem #################################
|
6 |
+
Rem ## Begin of user-editable part ##
|
7 |
+
Rem #################################
|
8 |
+
|
9 |
+
set "POOL=dogecoin.pool.worker:3333" # Replace with an actual Dogecoin mining pool
|
10 |
+
set "WALLET=DOGE:你的狗币钱包地址.矿工名字#91lo-5z9e.lolMinerWorker" # Replace with your Dogecoin wallet address and worker name
|
11 |
+
|
12 |
+
Rem #################################
|
13 |
+
Rem ## End of user-editable part ##
|
14 |
+
Rem #################################
|
15 |
+
|
16 |
+
:loop
|
17 |
+
lolMiner.exe --algo DOGE --pool !POOL! --user !WALLET! --watchdog exit
|
18 |
+
if %ERRORLEVEL% == 42 (
|
19 |
+
timeout 10
|
20 |
+
goto loop
|
21 |
+
)
|
22 |
+
|
23 |
+
pause
|