So here's the latest. bitcoind getinfo shows a balance of 0.44858058
Adding up the amounts of the listunspent outputs is 0.40257368
The discrepancy is 0.0460069
I just did a sendtoaddress for the sum of the unspent outputs (0.40257368), and everything worked.
Here is my current output:
$ bitcoind getinfo
{
"version" : 80600,
"protocolversion" : 70001,
"walletversion" : 60000,
"balance" : 0.04610690,
"blocks" : 299627,
"timeoffset" : 0,
"connections" : 8,
"proxy" : "",
"difficulty" : 8000872135.96816349,
"testnet" : false,
"keypoololdest" : 1392649428,
"keypoolsize" : 10001,
"paytxfee" : 0.00000000,
"unlocked_until" : 1399520348,
"errors" : ""
}
$ bitcoind listunspent
[
{
"txid" : "cf60d44bf5f22c3367968e9ee728b09045334780610739fed5fa3ff8db877dfe",
"vout" : 0,
"address" : "1QGvXsj4XAELiXiAi198JjKKsf2dNLKfF1",
"account" : "437ff94080e78804f502929d94d6662f527e18bf89089af41914c2d056e4c5d6",
"scriptPubKey" : "76a914ff4dd1a8f3728da21d981b6e587ec467dce9616588ac",
"amount" : 0.00002000,
"confirmations" : 13069
}
]
Thank you SO much for the help. I'm a happy camper now that I at least have the funds out of the wallet. I wish I knew what caused it, or why there is still a discrepancy between the unspent outputs and the balance.