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.
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!