mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-03-02 02:59:46 +01:00
25 lines
549 B
C++
25 lines
549 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/checks.h>
|
|
|
|
#include <random.h>
|
|
#include <util/result.h>
|
|
#include <util/translation.h>
|
|
|
|
#include <string>
|
|
|
|
namespace kernel {
|
|
|
|
util::Result<void> SanityChecks(const Context&)
|
|
{
|
|
if (!Random_SanityCheck()) {
|
|
return util::Error{Untranslated("OS cryptographic RNG sanity check failure. Aborting.")};
|
|
}
|
|
|
|
return {};
|
|
}
|
|
|
|
}
|