Well...
Current network hashrate 3 kh/s
reward 286.66 CPTL
difficulty 0.45
average time per round 11+ minutes
(stats from Poolest.com)
and everything is normal?? Is there a hidden network somewhere?
Is not that there is a hidden network, is that there are other people mining other than the one at the Poolest. But they are not hidden, the reason why you are not able to see the full network hashrate is because the wallet does not have the function
getnetworkhashps
so that when you run
getmininginfo
{
"blocks" : 66099, <-- not the actual block # for the Diff that will be display below.
"currentblocksize" : 1000,
"currentblocktx" : 0,
"difficulty" : 0.45, <--- The Diff from your question.
"errors" : "",
"generate" : false,
"genproclimit" : -1,
"hashespersec" : 0,
"pooledtx" : 0,
"testnet" : false
}
the
"networkhashps" :
is missing.
When you look at what Poolest display as the Network hash rate is only it's own hashrate.
The fromula that the coin is missing is similar to this one.
difficulty = 0.45 <--Example of Diff
timePerBlck = 30
TwX48 = (2^ 48)
networkhashrate = difficulty * ((TwX48 65535) timePerBlck)
networkhashrateKhs = (networkhashrate/1000)
networkhashrateKhs = 64,425 Kh/s
which is about 64 Mh/s
for a simple estimate you can do the following for a 30 sec Blocktime.
(difficulty * 100) + 42% = Mh/s
(.45 X 100) + 42% = 63.9 Mh/s