V0.5.8 windows 10 with 6X1080
when I run a fews hours,always auto quit cmd,and then do nothing,It waste a lot of time until I know it.
how can I fix it?PLS help!
You can add "pause" at the end of batch file to prevent cmd windows closing to see if there is some error message, then resolve error (preferable solution)...
...or you can simply call again and again the batch file in cycle with for example (but you wont get info about error):
:mine
timeout 60
cd dstm
zm --server ssl://eu1-zcash.flypool.org --port 3443 --user t1N1eJnRtQuyai6ewvQsaJe3ACWAvHykqhu.70001 --time
cd..
echo DSTM MINER RESTARTED AT %TIME% %DATE% >> dstm_log.txt
goto mine
(in this case batch file is one level above, and zm miner is in folder dstm)