Hi All,
Im trying to set p2pool server but it seems that it is not working at all.... Shares and Payout always set to 0.
Am i missing something ? Ideas?
p2pool log:
013-04-14 08:40:17.904862 > ########################################
2013-04-14 08:40:17.905458 > >>> Warning: (from bitcoind) Warning: this version is obsolete, upgrade required
2013-04-14 08:40:17.905888 > ########################################
2013-04-14 08:40:17.906335 P2Pool: 17333 shares in chain (8687 verified/17334 total) Peers: 6 (0 incoming)
2013-04-14 08:40:17.906670 Local: 103kH/s in last 4.6 minutes Local dead on arrival: ~2.7% (1-5%) Expected time to share: 8.4 hours
2013-04-14 08:40:17.908512 Shares: 0 (0 orphan, 0 dead) Stale rate: Efficiency: Current payout: 0.0000 LTC
2013-04-14 08:40:17.908934 Pool: 389MH/s Stale rate: 21.7% Expected time to block: 54.0 minutes
i tried setting it up with litecoin just for kicks and get the same thing myself.
04/17/13 00:50:31 received block cf325cc26a3570e6338c
04/17/13 00:50:31 SetBestChain: new best=cf325cc26a3570e6338c height=335883 work=26545242345195032 date=04/17/13 00:50:23
04/17/13 00:50:31 SetBestChain: 46 of last 100 blocks above version 1
04/17/13 00:50:31 ProcessBlock: ACCEPTED
this is what causes it in the litecoin src
// Check the version of the last 100 blocks to see if we need to upgrade:
if (!fIsInitialDownload)
{
int nUpgraded = 0;
const CBlockIndex* pindex = pindexBest;
for (int i = 0; i < 100 && pindex != NULL; i++)
{
if (pindex->nVersion > CBlock::CURRENT_VERSION)
++nUpgraded;
pindex = pindex->pprev;
}
if (nUpgraded > 0)
printf("SetBestChain: %d of last 100 blocks above version %d\n", nUpgraded, CBlock::CURRENT_VERSION);
if (nUpgraded > 100/2)
// strMiscWarning is read by GetWarnings(), called by Qt and the JSON-RPC code to warn the user:
strMiscWarning = _("Warning: this version is obsolete, upgrade required");
}
so, it's shooting that off since nUpgraded > 50
i'm running the latest version of litecoind
i edited that part out of src