@Claymore: This miner is free-to-use, however, current developer fee is 1% for Ethereum-only mining mode (-mode 1) and 1.5% for dual mining mode (-mode 0), every hour the miner mines for 36 or 54 seconds for developer.
I'm fine with this and thanks for creating this software. I do regularly maintain rigs for my clients and when it comes to fee, we manually calculate the fee for me. Example: if we say that the maintainer is getting 3% fee, I get this at the end of the month from the total mined coins during 30 days.
My question: Is it possible to make another option for "maintainer fee" to mine to other address given percentage?
Example: option like -maintainfee 3 that means "maintainer fee 3%"
Thank you,
I made a bat file for my customers.
Time loop.
miner1.bat your cutomer's config, miner2.bat your config.
@echo off
:loopa
miner2.bat
timeout /t 10 > NUL
echo "EXITING POOL1"
taskkill /IM "miner2.bat"
goto loopb
:loopb
miner1.bat
timeout /t 10 > NUL
echo "EXITING POOL2"
taskkill /IM "miner1.bat"
del /s /q /f D:\Mining\Claymore\*.log
goto loopa