Skip to content

Commit

Permalink
util: Don't set strMiscWarning on every exception
Browse files Browse the repository at this point in the history
Fixes #6809 - run-of-the-mill exceptions should not get into
strMiscWarning (which is reported by `getinfo`).
  • Loading branch information
laanwj committed Nov 27, 2015
1 parent 5ca149a commit 9b63758
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/util.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 9b63758

Please sign in to comment.