diff options
-rw-r--r-- | src/util/check.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/util/check.cpp b/src/util/check.cpp index c4982ff4ad..34b9d376a7 100644 --- a/src/util/check.cpp +++ b/src/util/check.cpp @@ -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) |