Problem
payment_link.rs line 6 imports crate::PAYMENT_TOLERANCE but the symbol is never referenced in the file:
warning: unused import: `crate::PAYMENT_TOLERANCE`
--> fluxapay/src/payment_link.rs:6:5
CI enforces -D warnings so this blocks the pipeline.
Acceptance Criteria
Branch & Commit Examples
branch: fix/clippy-warnings-cleanup
commit: fix(payment-link): remove unused PAYMENT_TOLERANCE import
Problem
payment_link.rsline 6 importscrate::PAYMENT_TOLERANCEbut the symbol is never referenced in the file:CI enforces
-D warningsso this blocks the pipeline.Acceptance Criteria
payment_link.rsPAYMENT_TOLERANCEis actually needed for link validation (e.g., inuse_link), it is used correctly rather than simply removedcargo clippy --all-targets --all-features -- -D warningspassesBranch & Commit Examples