What changed, and why it matters
This commit only reorders two Rust import/use statements in a single source file. It makes no functional change to the code and does not affect program behavior or security.
No action needed. This is a non-functional formatting change.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The diff in rust/rust_c/src/cosmos/mod.rs swaps the order of two use declarations: use crate::{extract_array, extract_array_mut}; and use crate::extract_ptr_with_type;. This is a formatting/style-only change with no semantic difference in Rust. No logic, data handling, or interface boundaries were modified.
Changed components
rust/rust_c/src/cosmos/mod.rsInspect captured patch +1 / −1
diff --git a/rust/rust_c/src/cosmos/mod.rs b/rust/rust_c/src/cosmos/mod.rs
index fbf06cf..a96a3c8 100644
--- a/rust/rust_c/src/cosmos/mod.rs
+++ b/rust/rust_c/src/cosmos/mod.rs
@@ -5,8 +5,8 @@ use crate::common::structs::{SimpleResponse, TransactionCheckResult, Transaction
use crate::common::types::{PtrBytes, PtrString, PtrT, PtrUR};
use crate::common::ur::{QRCodeType, UREncodeResult, FRAGMENT_MAX_LENGTH_DEFAULT};
use crate::common::utils::{convert_c_char, recover_c_char};
-use crate::{extract_array, extract_array_mut};
use crate::extract_ptr_with_type;
+use crate::{extract_array, extract_array_mut};
use alloc::format;
use alloc::string::{String, ToString};
use alloc::vec::Vec;
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.