Browse Source

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`).
0.13
Wladimir J. van der Laan 9 years ago
parent
commit
9b63758974
  1. 1
      src/util.cpp

1
src/util.cpp

@ -447,7 +447,6 @@ void PrintExceptionContinue(const std::exception* pex, const char* pszThread) @@ -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()

Loading…
Cancel
Save