mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-03-13 11:35:20 +01:00
Follow-up for PR #30856, commit 0dd66251
.
-BEGIN VERIFY SCRIPT-
sed -i "s|config/bitcoin-config\.h|bitcoin-build-config.h|g" $(git grep -l config/bitcoin-config\.h)
sed -i "s|bitcoin-config\.h|bitcoin-build-config.h|g" $(git grep -l "bitcoin-config\.h" ./src ./test ./cmake)
git mv ./cmake/bitcoin-config.h.in ./cmake/bitcoin-build-config.h.in
-END VERIFY SCRIPT-
67 lines
1.9 KiB
C++
67 lines
1.9 KiB
C++
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
|
// Copyright (c) 2009-2022 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 <bitcoin-build-config.h> // IWYU pragma: keep
|
|
|
|
#include <node/warnings.h>
|
|
|
|
#include <common/system.h>
|
|
#include <node/interface_ui.h>
|
|
#include <sync.h>
|
|
#include <univalue.h>
|
|
#include <util/translation.h>
|
|
|
|
#include <utility>
|
|
#include <vector>
|
|
|
|
namespace node {
|
|
Warnings::Warnings()
|
|
{
|
|
// Pre-release build warning
|
|
if (!CLIENT_VERSION_IS_RELEASE) {
|
|
m_warnings.insert(
|
|
{Warning::PRE_RELEASE_TEST_BUILD,
|
|
_("This is a pre-release test build - use at your own risk - do not use for mining or merchant applications")});
|
|
}
|
|
}
|
|
bool Warnings::Set(warning_type id, bilingual_str message)
|
|
{
|
|
const auto& [_, inserted]{WITH_LOCK(m_mutex, return m_warnings.insert({id, std::move(message)}))};
|
|
if (inserted) uiInterface.NotifyAlertChanged();
|
|
return inserted;
|
|
}
|
|
|
|
bool Warnings::Unset(warning_type id)
|
|
{
|
|
auto success{WITH_LOCK(m_mutex, return m_warnings.erase(id))};
|
|
if (success) uiInterface.NotifyAlertChanged();
|
|
return success;
|
|
}
|
|
|
|
std::vector<bilingual_str> Warnings::GetMessages() const
|
|
{
|
|
LOCK(m_mutex);
|
|
std::vector<bilingual_str> messages;
|
|
messages.reserve(m_warnings.size());
|
|
for (const auto& [id, msg] : m_warnings) {
|
|
messages.push_back(msg);
|
|
}
|
|
return messages;
|
|
}
|
|
|
|
UniValue GetWarningsForRpc(const Warnings& warnings, bool use_deprecated)
|
|
{
|
|
if (use_deprecated) {
|
|
const auto all_messages{warnings.GetMessages()};
|
|
return all_messages.empty() ? "" : all_messages.back().original;
|
|
}
|
|
|
|
UniValue messages{UniValue::VARR};
|
|
for (auto&& message : warnings.GetMessages()) {
|
|
messages.push_back(std::move(message.original));
|
|
}
|
|
return messages;
|
|
}
|
|
} // namespace node
|