Greetings, I am new here on the forum and started mining this week.
I'm hoping if someone can help me out on answering this Linux based question:
I have the primecoin-0.1.2-linux miner running on a few Linux nodes. I run the daemon service as primcoind instead of primecoin-qt GUI interface. On primecoin-qt GUI it tells me the XPM value, however since primecoind is specifically used, I was wondering where I can determine the value of the XPM. I have created a loosely based script from boldar on the Litecoin forums. This is what I use:
#!/bin/bash
#Script to watch current stats of primcoind mining
watch -n 5 'primecoind getinfo & primecoind getmininginfo & primecoind listaccounts & primecoind getconnectioncount & primecoind listtransactions'
This is the output. It refreshes at a rate of every 5 seconds
Every 5.0s: primecoind getinfo & primecoind getmininginfo & primecoind listaccounts & primecoind getconnectioncount & primecoind listtransa... Thu Sep 26 15:18:34 2013
{
"blocks" : 181774,
"currentblocksize" : 1000,
"currentblocktx" : 0,
"errors" : "",
"generate" : true,
"genproclimit" : -1,
"primespersec" : 802,
"chainsperday" : 0.07354261,
"pooledtx" : 0,
"testnet" : false
}
[
]
{
"" : 0.00000000
}
{
"version" : "v0.1.2xpm-beta",
"protocolversion" : 70001,
"walletversion" : 60000,
"balance" : 0.00000000,
"blocks" : 181774,
"moneysupply" : 2247595.22000000,
"timeoffset" : 2,
"connections" : 8,
"proxy" : "",
"testnet" : false,
"keypoololdest" : 1380045853,
"keypoolsize" : 116,
"paytxfee" : 0.00000000,
"errors" : ""
}
I highlighted "balance" in red. Would the "balance" : 0.000000000 be the actual XPM mined? Am I missing a simple command I can add to this script which would show the immature and actual mined? I would like some idea as to what progress is being made. I have "tailed" the debug.log and it appears it is mining. Any help is greatly appreciated.