3
1
I have about $200 in bitcoin but my wallet (Core) won't synchronize the blockchain (it's been doing this for days) since for some reason it got corrupted (As it tends to do say every other month) and now I'm unable to retrieve my money. I want to transfer it to a lightweight wallet so this won't happen anymore but I don't want to lose the money I have locked in there. How do I transfer this money when I can't synchronize to the current state of the blockchain?
I'm trying to run this on a command line promp from both Program Files and %appdata% bitcoin locations but I'm getting 'bitcoin-cli' is not recognized as an internal or external command, operable program or batch file – Thiago – 2015-10-09T23:37:58.197
bitcoin-cli was added in version 0.9, so if you are using an earlier version you'll need to do this with Bitcoin-QT instead (easiest from the debug console). If you are on v0.9 or later just make sure you have done a cd to the Bitcoin directory and run it from there (or if Linux, add prefix to load the program from the current path: ./bitcoin-cli ). – Stephen Gornick – 2015-10-11T02:58:44.980
I'm trying to run dumpprivkey myAddress from console but the it asks for walletpassphrase before. I've tried tke phrase I use to make transfers but it gives me the error "parse: have" ("have" is the second word I use in my passphrase for transferring funds) so I'm lost, how can I find this walletpassphrase? – Thiago – 2015-10-12T21:25:03.293
If you have multiple words in your wallet passphrase (or a space somewhere), quote the entire phrase. So
c:\> bitcoin-cli.exe walletpassphrase "<your passphrase>". – Jimmy Song – 2015-10-12T23:56:56.560I am pasting the entire phrase but it gives me this "parse: have" error. "have" happens to be the second words in the phrase. This happens from the Core console. If I use terminal command "bitcoin-cli dumpprivkey myAddress", then it shows me the message "error: couldn't connect to server" – Thiago – 2015-10-13T15:16:38.170
1@Tom Jimmy means you need to put your passphrase in quotes after you paste it in. So if your passphrase is I have Bitcoins, then you have to put it in quotes, like "I have Bitcoins". The quotes tell the computer to treat all the words inside as a string of characters or letters, not a command that gets parsed. – Digital Galaxy – 2015-10-14T01:15:19.090