3
1
Here is my terminal session:
$ echo $address
mvt7M16caMH1xoJyfWU5orjArfq97jhZ7k
$ bitcoin-cli -regtest getbalance
5899.99990000
$ bitcoin-cli -regtest sendtoaddress $address 10.0
6ed7452f8f11fe25904867b57e127a6b65cb180c2013e667e3d399c4179ff1f0
$ bitcoin-cli -regtest setgenerate true 1
$ bitcoin-cli -regtest getbalance $address
0.00000000
Shouldn't the balance of this address be 10 now? I thought that by generating a block, I will have that transaction included, which will show up on the addresses balance?
Is bitcoind in regtest mode? Is the address in your wallet? – Nick ODell – 2014-10-26T18:10:28.167
I ran
bitcoin-cli -regtest getnewaddress, and I also ranbitcoind -regtest -daemon, I think those are the two things you are looking for. If I needed to do anything outside of that, then no. – Chris Stewart – 2014-10-26T18:16:02.713Try
getreceivedbyaddressinstead. – Nick ODell – 2014-10-26T18:19:25.170That worked! Now why is that? Did I mistype something some where? Am I misunderstanding a procedure? – Chris Stewart – 2014-10-26T18:21:27.587
1
getbalance returns the balance of an account, not an address. https://en.bitcoin.it/wiki/Original_Bitcoin_client/API_calls_list I didn't notice it at first.
– Nick ODell – 2014-10-26T18:23:03.367