There are a lot of sites where you can get informations about the most profitable coin to mine (www.whattomine.com ; www.coinwarz.com ) but i didn´t found a site where you can get infos about profitable staking coins. So if there is any information for a rank sheet, which is regularly updated, it would be kind to post it.
Thanks to all and a happy new year 2017!
Dunno if there exactly the same site for POS coins but I used http://poswallet.com to find which will be when I made a research for myself (I am not associated with it). Consider BLK, HYPER, 1337 and DMD (Last one can be mined too).
- added new coin for dual mode: Siacoin. Now you can mine Ethereum, Ethereum+Decred or Ethereum+Siacoin. - added "-dcoin" option to select a coin for dual mode. - added "-allcoins exp" option value that allows you to mine Expanse and don't recreate DAG for devfee mining. - added Decred support for Nicehash pool. - default "-dcrt" option value is "5" now. - improved detection of bad pool state: miner will disconnect if pool rejected more than a half of last 10 shares. - "s" key: now miner also shows current difficulty so you can calculate how long it will take to find a share or a block. - bug fixes.
@Claymore, have you ever considered DMD coin (Edit: or other Groestl coin) for dual mining? Because as far I can see the two algos did not interfere a lot IMHO. It is quite profitable from time to time (http://whattomine.com/coins) and has POS w/ 25% interest annually until 2018 also. P.S.: I am not affiliated with it.
He is too busy on the ZEC miner.
I`m not in a hurry. Not until the summer at least.
- added new coin for dual mode: Siacoin. Now you can mine Ethereum, Ethereum+Decred or Ethereum+Siacoin. - added "-dcoin" option to select a coin for dual mode. - added "-allcoins exp" option value that allows you to mine Expanse and don't recreate DAG for devfee mining. - added Decred support for Nicehash pool. - default "-dcrt" option value is "5" now. - improved detection of bad pool state: miner will disconnect if pool rejected more than a half of last 10 shares. - "s" key: now miner also shows current difficulty so you can calculate how long it will take to find a share or a block. - bug fixes.
@Claymore, have you ever considered DMD coin (Edit: or other Groestl coin) for dual mining? Because as far I can see the two algos did not interfere a lot IMHO. It is quite profitable from time to time (http://whattomine.com/coins) and has POS w/ 25% interest annually until 2018 also. P.S.: I am not affiliated with it.
@Claymore can you put -retrydelay option in this great miner as you did in the awesome ZEC miner? So we could use it in multi algo pools 10x in advance.
I'm trying to get my rigs under a sleep schedule as my electricity provider is charging extra $$ during peak hours of the day (for summer months). So, I've got a couple scripts that run using the Task Scheduler on Windows. I need to be able to close the miner before it sleeps the rig, so that when the task to wake the rig up and start the miner executes later, I won't have >1 instance of the miner running. I've tried the following:
Code:
C:\Users\Miner>taskkill /IM EthDcrMiner64.exe ERROR: The process "EthDcrMiner64.exe" with PID 7216 could not be terminated. Reason: This process can only be terminated forcefully (with /F option).
...which made me do this:
Code:
C:\Users\Miner>taskkill /IM EthDcrMiner64.exe /F ERROR: The process "EthDcrMiner64.exe" with PID 7216 could not be terminated. Reason: Access is denied.
Can you tell me a good way to gracefully exit your miner via cmd?
Bump! Can anyone help me out here?
taskkill /F /IM EthDcrMiner64.exe /T >nul Used to work for me.. And try using "runas /user:administrator C:\data\mybatchfile.bat"
EDIT: BTW are you trying to close the BAT file window itself with miner started in it?