kernel: build: remove unused serfloat dependency
What changed, and why it matters
This commit removes one source file from the build list for the bitcoinkernel library because that file is not actually used by anything in that library. It is a routine cleanup change with no security relevance.
No security action needed. This is a benign build-system cleanup.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The change deletes ../util/serfloat.cpp from src/kernel/CMakeLists.txt. The commit message explains that serfloat is only used for fee estimation, which is not part of the bitcoinkernel library, so the dependency is unused and can be removed. There is no code logic change, no bug fix, and no security-sensitive modification.
Changed components
src/kernel/CMakeLists.txtInspect captured patch +0 / −1
diff --git a/src/kernel/CMakeLists.txt b/src/kernel/CMakeLists.txt
index cf2a0c04..541f10b3 100644
--- a/src/kernel/CMakeLists.txt
+++ b/src/kernel/CMakeLists.txt
@@ -68,7 +68,6 @@ add_library(bitcoinkernel
../util/hasher.cpp
../util/moneystr.cpp
../util/rbf.cpp
- ../util/serfloat.cpp
../util/signalinterrupt.cpp
../util/syserror.cpp
../util/threadnames.cpp
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.