Hey,
I'm facing something I don't understand.
How come it's possible using bitcoind that you can move money from one account to another (same wallet) you don't have, and ending up with a negative balance? Even specifying a minconf.
E.g.
~$ ./bitcoind move AccountA AccountB 10 6
true
So here I move 10 from AccountA to AccountB and specify a minconf of 6.
The thing is that AccountA had a balance of 0.1.
Querying the balance of AccountA now give me a negative value (again, even if I specify a minconf).
~$ ./bitcoind getbalance AccountA 6
-9.9
FWIW, I'm using the last official release of bitcoind (v0.8.1-beta).
Isn't "move" supposed to check the balance of the sender account? (what would [minconf] argument use for otherwise)
Any insight?
Thanks