bitcoin core command line walletpassphrase incorrect but works for the main system?

2

My command line won't accept my passphrase, but on the main system it says it's correct and I can change it. I want to dump private key but no matter what I try, it continues to say incorrect passphrase. What can I do?

jessi d.

Posted 2017-09-14T04:28:01.017

Reputation: 21

Question was closed 2017-09-17T09:20:38.403

Can you explain more precisely what works and what doesn't, e.g. specific commands and/or mouseclicks, and what exactly happens? I don't know what you mean by "the main system".Nate Eldredge 2017-09-14T04:34:01.980

Answers

4

If your passphrase contains spaces or special characters, you will need to wrap it with single quotes (') so that the debug console can properly parse your passphrase. For example, if your passphrase were This is my passphrase, then your command should be

walletpassphrase 'This is my passphrase'

Andrew Chow

Posted 2017-09-14T04:28:01.017

Reputation: 40 910

Wow, this saved my day! Can't believe only single quotes (and not double quotes) works!Bing Han 2018-06-17T18:30:09.063