What changed, and why it matters
This commit is purely cosmetic: it reorders two crate re-exports (base58 and base64) in a source file to satisfy the project's code formatter. There is no functional change, no bug fix, and no security relevance.
No action needed; this is a non-functional formatting commit.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The diff in bitcoin/src/lib.rs swaps the order of pub extern crate base58; and pub extern crate base64; so that base58 appears before base64. This is a formatting-only change with no semantic effect on the crate’s API or behavior.
Changed components
bitcoin/src/lib.rsInspect captured patch +1 / −1
diff --git a/bitcoin/src/lib.rs b/bitcoin/src/lib.rs
index 19ad1b87..b8a7c647 100644
--- a/bitcoin/src/lib.rs
+++ b/bitcoin/src/lib.rs
@@ -62,9 +62,9 @@ extern crate std;
#[cfg(feature = "arbitrary")]
pub extern crate arbitrary;
+pub extern crate base58;
#[cfg(feature = "base64")]
pub extern crate base64;
-pub extern crate base58;
pub extern crate bech32;
pub extern crate encoding;
pub extern crate hashes;
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.