diff options
| author | Wladimir J. van der Laan <[email protected]> | 2015-08-03 17:50:27 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2015-08-03 17:51:18 +0200 |
| commit | a2bf40dde7465292a29234c6d32d9df7e386617e (patch) | |
| tree | 62d1f58b350d3c7f43fa40faa6c979d09e000d33 /src/wallet/crypter.cpp | |
| parent | Merge pull request #6501 (diff) | |
| parent | Make sure LogPrintf strings are line-terminated (diff) | |
| download | discoin-a2bf40dde7465292a29234c6d32d9df7e386617e.tar.xz discoin-a2bf40dde7465292a29234c6d32d9df7e386617e.zip | |
Merge pull request #6497
f18b8ec Make sure LogPrintf strings are line-terminated (Wladimir J. van der Laan)
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 c7f7e2167..0b0fb562e 100644 --- a/src/wallet/crypter.cpp +++ b/src/wallet/crypter.cpp @@ -186,7 +186,7 @@ bool CCryptoKeyStore::Unlock(const CKeyingMaterial& vMasterKeyIn) } if (keyPass && keyFail) { - LogPrintf("The wallet is probably corrupted: Some keys decrypt but not all."); + LogPrintf("The wallet is probably corrupted: Some keys decrypt but not all.\n"); assert(false); } if (keyFail || !keyPass) |