diff options
author | MarcoFalke <falke.marco@gmail.com> | 2018-11-14 11:26:51 -0500 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2018-11-14 11:27:01 -0500 |
commit | c7366d2399e2778ea2c6595b0fde5d5fb48141ed (patch) | |
tree | 355be9ceb939aceaa183526687b0954d55b1be47 /src/wallet/crypter.cpp | |
parent | 2e8f9dc2bbb1200218feaf80344d35dca1cd6b25 (diff) | |
parent | b4f6e58ca5a74225b6db9deb3ffe1ce3ab19a790 (diff) |
Merge #14478: Show error to user when corrupt wallet unlock fails
b4f6e58ca5 Better error message for user when corrupt wallet unlock fails (MeshCollider)
Pull request description:
Mentioned here: https://github.com/bitcoin/bitcoin/issues/14461#issuecomment-429183503
Current behavior is to assert(false) and crash, only info is printed in the log. This shows the message to the user before abort() instead.
Tree-SHA512: 526f9ed9262257fca55caf7153ab913ed958b13b079d2f01db797485614d8c375815a1554276e8cf73d3838104b2691a9cf85c8d097973127ae8de9e111446bf
Diffstat (limited to 'src/wallet/crypter.cpp')
-rw-r--r-- | src/wallet/crypter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/crypter.cpp b/src/wallet/crypter.cpp index de320b4e9e..f5ac6e98b2 100644 --- a/src/wallet/crypter.cpp +++ b/src/wallet/crypter.cpp @@ -202,7 +202,7 @@ bool CCryptoKeyStore::Unlock(const CKeyingMaterial& vMasterKeyIn) if (keyPass && keyFail) { LogPrintf("The wallet is probably corrupted: Some keys decrypt but not all.\n"); - assert(false); + throw std::runtime_error("Error unlocking wallet: some keys decrypt but not all. Your wallet file may be corrupt."); } if (keyFail || !keyPass) return false; |