Lately I have become interested in the way crytocurrency works. So I decided to make my own cryptocurrency to learn it's internal workings.
I used a clone of SmallChange and followed this guide.
Everything compiled well, but when I run the program, be it via command line or the qt interface, when I tell it to start mining it just tells me that it is mining but the hashespersecond are 0.
I tried building the litecoin source on my machine and used the exact same configuration that I used in my own altcoin (the same ".conf" file) and when I tell it to mine it does mine. For my altcoin I used the ports:
55883 for RCP
55884 for P2P
My question is, is my computer not mining my altcoin because I'm alone on the network or it is happening because I have made some mistake in my code?
Thank you in advance :)
Edit: my output for "getinfo" is:
{
"version" : 1000000,
"protocolversion" : 60001,
"walletversion" : 60000,
"balance" : 0.00000000,
"blocks" : 0,
"connections" : 0,
"proxy" : "",
"difficulty" : 0.00024414,
"testnet" : false,
"keypoololdest" : 1369621665,
"keypoolsize" : 101,
"paytxfee" : 0.00000000,
"mininput" : 0.00010000,
"errors" : ""
}
and the output for "getmininginfo" is:
{
"blocks" : 0,
"currentblocksize" : 1000,
"currentblocktx" : 0,
"difficulty" : 0.00024414,
"errors" : "",
"generate" : true,
"genproclimit" : 4,
"hashespersec" : 0,
"networkhashps" : -9223372036854775808,
"pooledtx" : 0,
"testnet" : false
}