I'm seeing an issue with primecoind where every call to getblock returns:
error: {"code":-5,"message":"Block not found"}
This is on a system that has been running a full node successfully for multiple weeks, continuously. Other coin daemons have been and continue to run correctly.
I have cleared all binary and source files and recompiled from the latest master on github.
Server has obviously been bounced, behavior persists through multiple reboots.
These block not found errors are occurring for blocks of a height less than the current block count listed by getinfo.
Is anyone else seeing a similar issue at the moment?
Interestingly, getinfo does not throw an error, but all getblock calls do.
root@blockchainer ~ ∴ primecoind getinfo
{
"version" : "v0.1.2xpm-91-gb7b034f-beta",
"protocolversion" : 70001,
"walletversion" : 60000,
"balance" : 0.00000000,
"blocks" : 237209,
"moneysupply" : 2811340.36019949,
"timeoffset" : -1,
"connections" : 6,
"proxy" : "",
"testnet" : false,
"keypoololdest" : 1403535164,
"keypoolsize" : 101,
"paytxfee" : 0.00000000,
"errors" : ""
}
edit: resolved. I'm not sure what the root cause was here but once the blockchain caught up to the current best height getblock calls began functioning properly again. I'll edit again if this issue recurs and I am able to track down the issue.