diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2015-11-27 13:35:49 +0100 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2015-11-27 13:36:11 +0100 |
commit | 9b637589740089a56a81a79d38f4be522cfa43c3 (patch) | |
tree | 561ec2cbc6842d3dbc379adef6026db81d56d17f /src/util.cpp | |
parent | 5ca149a3db4a9f4e5ea93353494b40f2f1713e76 (diff) |
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 e8514a2ef0..a852bc3176 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() |