mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-03-17 17:02:43 +00:00
Preparation for a future commit where kernel's dependency on logging.cpp is removed completely. Replace usage of logging\.h with util/log\.h where it suffices, and fix wrong includes according to iwyu.
27 lines
651 B
C++
27 lines
651 B
C++
// Copyright (c) 2022-present 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 <kernel/context.h>
|
|
|
|
#include <crypto/sha256.h>
|
|
#include <random.h>
|
|
#include <util/log.h>
|
|
|
|
#include <mutex>
|
|
#include <string>
|
|
|
|
namespace kernel {
|
|
Context::Context()
|
|
{
|
|
static std::once_flag globals_initialized{};
|
|
std::call_once(globals_initialized, []() {
|
|
std::string sha256_algo = SHA256AutoDetect();
|
|
LogInfo("Using the '%s' SHA256 implementation\n", sha256_algo);
|
|
RandomInit();
|
|
});
|
|
}
|
|
|
|
|
|
} // namespace kernel
|