refactor: Add missing include in bitcoinkernel_wrapper.h
What changed, and why it matters
This is a straightforward code cleanup: a single missing C++ standard library header, <exception>, was added to a wrapper header file. It does not change program behavior, fix a crash, or address any security issue. It simply ensures the header compiles correctly on its own in all build configurations.
No security action required. Treat as normal build hygiene / refactoring change.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The commit adds #include
Changed components
src/kernel/bitcoinkernel_wrapper.hInspect captured patch +1 / −0
diff --git a/src/kernel/bitcoinkernel_wrapper.h b/src/kernel/bitcoinkernel_wrapper.h
index 06a4ccfa..4f8416c2 100644
--- a/src/kernel/bitcoinkernel_wrapper.h
+++ b/src/kernel/bitcoinkernel_wrapper.h
@@ -8,6 +8,7 @@
#include <kernel/bitcoinkernel.h>
#include <array>
+#include <exception>
#include <functional>
#include <memory>
#include <optional>
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.