Hmm...that might make sense....so should I remove kc from the list of supported stuff or will that screw me in the long run? Just hate seeing no profits at all being reported - makes me nervous something is wrong on my side.
U are using 2.2? Then you can remove keccak from algos.
There is a 2.3 beta version that was updated today with some buxfixes (inklude the keccak bug) but think there is still some issues with 2.3 beta reported from some user.
Edit: you can ofcourse edit your own 2.2 version to support real keccak value if u know what to do in the files.
Example: In zpools.ps1 file located in map pools.
switch($Zpool_Algorithm)
{
"equihash"{$Divisor /= 1000}
"blake2s"{$Divisor *= 1000}
"blakecoin"{$Divisor *= 1000}
"decred"{$Divisor *= 1000}
"keccak"{$Divisor *= 1000}
}