Post
Topic
Board Mining (Altcoins)
Re: Claymore's Dual Ethereum AMD+NVIDIA GPU Miner v9.5 (Windows/Linux)
by
RuMiner
on 22/06/2017, 14:53:15 UTC
Can you set Claymore to share mined ETH to two wallets and set how much percentage to send to one and how much to another?
I made a bat file for tihs. it is started via sheduler on saturday and on monday, so I mine monday to friday to one wallet, weekends to another one.
main.txt contains one pool config, safe.txt second config for saturday and sunday (theese files must contain last string empty!)
settings.txt - general miner settings
logdir - your miner path
when started, it detects a weekday and generates config.txt by merging appropriate pool settings and the rest of it

Code:
@echo off
rem Startday ver 1.01
For /F "Skip=1" %%i In ('WMIC Path Win32_LocalTime Get DayOfWeek') Do Set /A $DayOfWeek=%%i+1&GoTo DayOfWeek
:DayOfWeek
Echo Day: %$DayOfWeek%
taskkill -f /im EthDcrMiner64.exe
timeout 10
rem ############################################
set logdir=C:\hal\dual_main
rem ############################################
setx GPU_FORCE_64BIT_PTR 0
setx GPU_MAX_HEAP_SIZE 100
setx GPU_USE_SYNC_OBJECTS 1
setx GPU_MAX_ALLOC_PERCENT 100
setx GPU_SINGLE_ALLOC_PERCENT 100
set WORKER=%computername%
del %logdir%\config.txt

if %$DayOfWeek%==1 (
copy %logdir%\safe.txt+%logdir%\settings.txt %logdir%\config.txt /b
) else (
if %$DayOfWeek%==7 (
copy %logdir%\safe.txt+%logdir%\settings.txt %logdir%\config.txt /b
) else (
copy %logdir%\main.txt+%logdir%\settings.txt %logdir%\config.txt /b
))

%logdir%\EthDcrMiner64.exe %logdir%\config.txt