mirror of
https://github.com/dashpay/dash.git
synced 2024-12-28 13:32:47 +01:00
673111c448
d49612f98add29066817b7c808b76c2d728948e5 Make SetMiscWarning() accept bilingual_str argument (Hennadii Stepanov)
d1ae7c0355662481a7d181a0a458284936d53eb1 Make GetWarnings() return bilingual_str (Hennadii Stepanov)
38e33aa481cefbe12c50f344bae190c0d95fb489 refactor: Make GetWarnings() bilingual_str aware internally (Hennadii Stepanov)
Pull request description:
This is one more step for consistent usage of `bilingual_str`.
No new translation messages are defined.
ACKs for top commit:
laanwj:
Code review ACK d49612f98add29066817b7c808b76c2d728948e5
MarcoFalke:
ACK d49612f98add29066817b7c808b76c2d728948e5 🌂
Tree-SHA512: 7413cb94a85291209c182845f6873350bb9e9ce940647d416c462a136603832fec8a63d792341bf634f07629767c78bc206d3a318cf10c7e87241c114c2496e9
62 lines
1.8 KiB
C++
62 lines
1.8 KiB
C++
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
// Copyright (c) 2009-2019 The Bitcoin Core developers
|
|
// Distributed under the MIT software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#include <warnings.h>
|
|
|
|
#include <sync.h>
|
|
#include <util/string.h>
|
|
#include <util/system.h>
|
|
#include <util/translation.h>
|
|
#include <hash.h>
|
|
|
|
#include <vector>
|
|
|
|
static Mutex g_warnings_mutex;
|
|
static bilingual_str g_misc_warnings GUARDED_BY(g_warnings_mutex);
|
|
static bool fLargeWorkInvalidChainFound GUARDED_BY(g_warnings_mutex) = false;
|
|
|
|
void SetMiscWarning(const bilingual_str& warning)
|
|
{
|
|
LOCK(g_warnings_mutex);
|
|
g_misc_warnings = warning;
|
|
}
|
|
|
|
void SetfLargeWorkInvalidChainFound(bool flag)
|
|
{
|
|
LOCK(g_warnings_mutex);
|
|
fLargeWorkInvalidChainFound = flag;
|
|
}
|
|
|
|
bilingual_str GetWarnings(bool verbose)
|
|
{
|
|
bilingual_str warnings_concise;
|
|
std::vector<bilingual_str> warnings_verbose;
|
|
|
|
LOCK(g_warnings_mutex);
|
|
|
|
// Pre-release build warning
|
|
if (!CLIENT_VERSION_IS_RELEASE) {
|
|
warnings_concise = _("This is a pre-release test build - use at your own risk - do not use for mining or merchant applications");
|
|
warnings_verbose.emplace_back(warnings_concise);
|
|
}
|
|
|
|
// Misc warnings like out of disk space and clock is wrong
|
|
if (!g_misc_warnings.empty()) {
|
|
warnings_concise = g_misc_warnings;
|
|
warnings_verbose.emplace_back(warnings_concise);
|
|
}
|
|
|
|
if (fLargeWorkInvalidChainFound) {
|
|
warnings_concise = _("Warning: We do not appear to fully agree with our peers! You may need to upgrade, or other nodes may need to upgrade.");
|
|
warnings_verbose.emplace_back(warnings_concise);
|
|
}
|
|
|
|
if (verbose) {
|
|
return Join(warnings_verbose, Untranslated("<hr />"));
|
|
}
|
|
|
|
return warnings_concise;
|
|
}
|