util: Include full version id in bug reports

This commit is contained in:
MarcoFalke 2022-12-06 11:20:10 +01:00
parent edbe4f808a
commit fa825bd227
No known key found for this signature in database
GPG key ID: CE2B75697E69A548

View file

@ -8,6 +8,7 @@
#include <config/bitcoin-config.h>
#endif
#include <clientversion.h>
#include <tinyformat.h>
#include <cstdio>
@ -16,7 +17,10 @@
std::string StrFormatInternalBug(const char* msg, const char* file, int line, const char* func)
{
return strprintf("Internal bug detected: \"%s\"\n%s:%d (%s)\nPlease report this issue here: %s\n", msg, file, line, func, PACKAGE_BUGREPORT);
return strprintf("Internal bug detected: \"%s\"\n%s:%d (%s)\n"
"%s %s\n"
"Please report this issue here: %s\n",
msg, file, line, func, PACKAGE_NAME, FormatFullVersion(), PACKAGE_BUGREPORT);
}
NonFatalCheckError::NonFatalCheckError(const char* msg, const char* file, int line, const char* func)