It will take several days before the wallet is in sync. I already purchased a bitcoin and am waiting for it to transfer into my account using the address that was generated by Bitcoin-Qt. Can I just re-divert the Bitcoin to a cloud-based wallet that doesn't need to synchronize?
Asked
Active
Viewed 8,160 times
1
-
If you want to speed up the blockchain sync use bootstrap.dat – 0xcaff Mar 13 '14 at 17:45
-
closely related to Cannot access my bitcoins because my wallet is still synchronising. What can I do to retrieve them? – Murch Aug 20 '15 at 12:02
3 Answers
1
Are you sure the syncing is not advancing? If you hover the icon in the lower right corner, you should see the block count. Can you see it increase?
You can export your client's wallet.dat
file and import it into a new Bitcoin-Qt wallet or into another Bitcoin wallet, either using the wallet.dat
file directly or by extracting the private keys from it.

Steven Roose
- 11,841
- 8
- 45
- 73
-
It says "Catching up" 14900 out of 242000 or something like that... I would really just rather not have to go through that! so if I export that file wallet.dat, the transaction will show up in my new wallet? – fares Jun 19 '13 at 13:40
-
What you also can do is just delete all files in your data folder only keeping the wallet.dat file. That's the only one you need to access your coins, if you delete the others, the syncing will restart. Make sure you have enough space in the data folder btw, this data can take up to 10 GB of space. – Steven Roose Jun 19 '13 at 13:56
-
-
You need to go to your Home folder first. I don't know exactly how you do it in Mac (I use Mac as well and got frustrated many time about how hard it is), but you need to get Finder to show hidden folders. The Library folder in your Home folder is hidden. In there, there should be a Application Support/Bitcoin folder with the data. – Steven Roose Jun 19 '13 at 14:15
1
Open Bitcoin-qt.
Go Help > Debug window. Then click "console" tab.
Type
dumpprivkey [the address you sent it too]
Go to https://blockchain.info/wallet/
Click "Create my free wallet", and do so.
Log in. Go to "Import / export".
Under "Import Private Key" enter what the terminal returned.

Guesty
- 11
- 1
-
4Unless you really understand how wallets work, this is likely shooting yourself in the foot. The wallet uses a new change address for every transaction, so unless you're very careful to include those (they are usually hidden), you'll miss things. – Pieter Wuille Jun 20 '13 at 00:04
-
-1
It's important to first set:
type: walletpassphrase “your walletpassphrase” 600
type: dumpprivkey [your wallet string]
-
1A brief explanation of what this does and why it is important would improve your answer. People may be reluctant to follow instructions without a reason. – trichoplax is on Codidact now Mar 13 '14 at 14:12
-