aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/checks.cpp
AgeCommit message (Collapse)Author
2024-05-09kernel: Remove key module from kernel libraryTheCharlatan
The key module's functionality is not used by the kernel library, but currently kernel users are still required to initialize the key module's `secp256k1_context_sign` global as part of the `kernel::Context` through `ECC_Start`.
2024-03-18Revert "time: add runtime sanity check"MarcoFalke
This reverts commit 3c2e16be22ae04bf56663ee5ec1554d0d569741b.
2023-05-24refactor: Replace std::optional<bilingual_str> with util::ResultRyan Ofsky
2022-07-19ci: Enable IWYU in src/kernel directoryRyan Ofsky
Suggested https://github.com/bitcoin/bitcoin/pull/25308#discussion_r892505713
2022-07-19refactor: Reduce number of SanityChecks return valuesRyan Ofsky
2022-06-02kernel: SanityChecks: Return an error structCarl Dong
This reduces libbitcoinkernel's coupling with ui_interface and translation.
2022-06-02Move init::SanityCheck to kernel::SanityCheckCarl Dong