-
Notifications
You must be signed in to change notification settings - Fork 70
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error handling failed when Bitcoin core has an unencrypted wallet, but wallet password is passed #115
Comments
The weird thing is that I actually have protected my wallet in Bitcoin core with a passphrase. |
Hey @ripcurlx! Yeah, I know about the issue, and it's on my to-do list.
Bitcoin Core supports multiple wallets (you can load and use many simultaneously). In Bisq 2, we create a new wallet. We don't touch any existing/loaded wallets. |
Ah - just recognized the newly created wallet. 👍 |
At the moment, the wallet module raises a NullPointerException if the wallet is not encrypted. This shouldn't happen.
Wallet: Support not encrypted wallets (#115)
Fixed in #121 |
When trying to connect to Bitcoin core passing a passphrase and the wallet is unencrypted it fails with
Because
Error: running with an unencrypted wallet, but walletpassphrase was called.
is returned anddoesn't handle the case properly when no cause exists.
The text was updated successfully, but these errors were encountered: