Reputation: 1
I have installed bitcoind daemon into server and create address for individual users. An User A sends 0.0004 BTC into my Bitcoind daemon server, yet it will not appears into my server. I have checked using the following commands:
bitcoin-cli getbalance
Following Link will generate acknowledgement from user transaction.It will show transaction history, yet it will not receive coin into my bitcoind daemon server. How do I resolve this issue?
Upvotes: -1
Views: 91
Reputation: 66763
Your node is not synced with the block chain. Examine the output of
bitcoin-cli getblockcount
Compare this number with the number of the block that includes your transaction. It will be lower. You will have to wait for the node to catch up with the block chain, or possibly resolve any network connection issues that are preventing it from doing that.
(As an aside, note that you don't need to use real bitcoin for testing. There is testnet for that.)
Upvotes: -1