So I have been mining some LBW from time to time. Always solo mining. Never any send/receive transactions. Today I noticed that the reported balance is substantially lower than the sum of the "generate" transactions when I call listtransactions.
reported balance: 3822.56
sum of 'generate' transactions: 7509
( I computed the sum of transactions by calling listtransactions '' 1000, then parsing the output into a CSV file and filtering out everything that is not category "generate", then summing. )
So this seems like a bug to me, but maybe there is another explanation?
i did notice that at one point lebowskid was using a lot of CPU and the stake value became non-zero, and it was generating some transactions, which I thought was odd, but figured it was all part of the proof-of-stake logic. But now "stake" value is zero again, and the only two transactions types in history are "generate" and "orphan".
A few more details below.
./lebowskisd getinfo
{
"version" : "v1.1.0.0-g32a928e-dude-abides",
"protocolversion" : 65000,
"walletversion" : 60000,
"balance" : 3822.56000000,
"newmint" : 0.00000000,
"stake" : 0.00000000,
"blocks" : 105033,
"moneysupply" : 2076600.75851100,
"difficulty" : 0.13767134,
"testnet" : false,
"keypoololdest" : 1374466971,
"keypoolsize" : 102,
"paytxfee" : 0.00100000,
"errors" : ""
}
./lebowskisd listtransactions '' 1000 | grep generate | grep categ | wc -l
393
./lebowskisd listtransactions '' 1000 | grep orphan | grep categ | wc -l
17
./lebowskisd listtransactions '' 1000 | grep amount | grep 19.98 | wc -l
197
./lebowskisd listtransactions '' 1000 | grep amount | grep 20.0 | wc -l
174
./lebowskisd listtransactions '' 1000 | grep amount | grep -v 19.98 | wc -l
213
./lebowskisd listtransactions '' 1000 | grep amount | sort -u
"amount" : 10.00000000,
"amount" : 10.01000000,
"amount" : 19.98000000,
"amount" : 19.99000000,
"amount" : 20.00000000,
"amount" : 20.01000000,
"amount" : 20.02000000,
./lebowskisd listtransactions '' 1000 | grep amount | grep 10.0 | wc -l
86