← Watch feed
chore: correct spelling in exhaustive pattern matching test name
What changed, and why it matters
This commit only fixes a spelling mistake in the name of a test function ('exaustively' to 'exhaustively'). It does not change any executable code, behavior, or security properties of the project.
Recommended action
No security action needed; this is a trivial non-functional cleanup change.
Security signals we found
No strong security signals were identified.
Evidence from the diff
A single-character typo correction in a Rust test name within bitcoin/tests/network.rs. The diff changes only the identifier of an existing test; no logic, API, or runtime behavior is modified.
Changed components
bitcoin/tests/network.rsInspect captured patch +1 / −1
diff --git a/bitcoin/tests/network.rs b/bitcoin/tests/network.rs
index 921a29f0..2b272721 100644
--- a/bitcoin/tests/network.rs
+++ b/bitcoin/tests/network.rs
@@ -34,7 +34,7 @@ fn can_use_network_kind() {
}
#[test]
-fn can_not_match_exaustively_on_testnet_version() {
+fn can_not_match_exhaustively_on_testnet_version() {
// Returns true if `n` is testnet version 3.
fn is_testnet_v3(n: Network) -> bool {
match n {
Risk score
Our methodology →Why this scored 15/100
Human-validated context
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
No validated notes yet.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.