Post
Topic
Board Mining (Altcoins)
Re: [ANN] dstm's ZCash / Equihash Nvidia Miner v0.6 (Linux / Windows)
by
zerf2004
on 22/02/2018, 12:33:38 UTC
Hey @dstm I just wanted to ask you how you are calculating when to submit devfee shares vs normal shares. I have been looking through my logs for the last 24 hours and No matter what block of time I look at the number of *s vs +s comes out to around 7-8% instead of the 2% that it should be. Am I missing something?

Here are the 2 commands I used to parse out the characters and then do the math with them.

Code:
miner@simpleminer:/root/miner/dstm-v0.5.8$ cat zm.log.tmp |grep / |awk -F" " '{print $18}' | grep -o "*" | wc -l
357
miner@simpleminer:/root/miner/dstm-v0.5.8$ cat zm.log.tmp |grep / |awk -F" " '{print $18}' | grep -o "+" | wc -l
4235

357/(357+4235)*100=7.8%

Thanks!

Dev fee is 2% of your rig's mining time, not 2% of your shares

Do you know this for sure? Where does it say that? It would be nice if the logs indicated a "devfee" block of time so it was easy to know or see when it was working for the dev instead of just randomly submitting dev shares throughout the normal shares. Just a thought.

The promise I have is that no matter what time of block I pick in my logs (2 hours, 4 hours or 24 hours) it seems to always come out around the same high % over 2% so that's why I am trying to understand how he is doing the dev shares.