diff options
| author | Wladimir J. van der Laan <[email protected]> | 2015-11-27 13:35:49 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2015-11-27 13:36:11 +0100 |
| commit | 9b637589740089a56a81a79d38f4be522cfa43c3 (patch) | |
| tree | 561ec2cbc6842d3dbc379adef6026db81d56d17f /src/util.cpp | |
| parent | Merge pull request #7053 (diff) | |
| download | discoin-9b637589740089a56a81a79d38f4be522cfa43c3.tar.xz discoin-9b637589740089a56a81a79d38f4be522cfa43c3.zip | |
util: Don't set strMiscWarning on every exception
Fixes #6809 - run-of-the-mill exceptions should not get into
strMiscWarning (which is reported by `getinfo`).
Diffstat (limited to 'src/util.cpp')
| -rw-r--r-- | src/util.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/util.cpp b/src/util.cpp index e8514a2ef..a852bc317 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -447,7 +447,6 @@ void PrintExceptionContinue(const std::exception* pex, const char* pszThread) std::string message = FormatException(pex, pszThread); LogPrintf("\n\n************************\n%s\n", message); fprintf(stderr, "\n\n************************\n%s\n", message.c_str()); - strMiscWarning = message; } boost::filesystem::path GetDefaultDataDir() |