1

I'm trying to learn how to programmatically interact with the Bitcoin protocol. I've, seemingly, successfully generated a private key, WIF, and public address with code. I used Coinbase to send .001 BT to 14egr6kfYY4xiSVPim2sJnED4t89Yvn8hQ. I then used the Bitcoin-Qt debug console and issued

walletpassphrase <WIF> More

to import the address. The address has shown up in Bitcoin-Qt but the transaction is not appearing.

address

enter image description here

Any help is greatly appreciated!

Murch
  • 71,155
  • 33
  • 180
  • 600
xanadont
  • 111
  • 4
  • I would try the -rescan command line option. – Nate Eldredge Mar 27 '14 at 07:13
  • As Nate said, the `-rescan` should fix this. See [How exactly does a rescan work?](http://bitcoin.stackexchange.com/questions/1249/how-exactly-does-rescan-work) for more details. – John T Mar 27 '14 at 07:15

1 Answers1

0

As others have stated, doing

Bitcoin-Qt -rescan

fixed the missing transaction.

xanadont
  • 111
  • 4