From f8b2259bc2cd99daa9c15f61b67cdb83731cfe9c Mon Sep 17 00:00:00 2001 From: Sofi Azcoaga Date: Fri, 6 Sep 2024 16:29:14 -0300 Subject: [PATCH] change detector description --- detectors/token-interface-inference/src/lib.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/detectors/token-interface-inference/src/lib.rs b/detectors/token-interface-inference/src/lib.rs index af56a222..b339a222 100644 --- a/detectors/token-interface-inference/src/lib.rs +++ b/detectors/token-interface-inference/src/lib.rs @@ -34,11 +34,11 @@ dylint_linting::impl_late_lint! { "", TokenInterfaceInference::default(), { - name: "The contract appears to be a Token but does not implement the Token Interface trait.", - long_message: "Implementing the trait can improve the compliance of the token interface.", - severity: "", - help: "", - vulnerability_class: "", + name: "Token Interface Implementation Analyzer", + long_message: "Implementing the Token Interface trait helps to ensure proper compliance of the SEP-41 standard.", + severity: "Enhancement", + help: "https://coinfabrik.github.io/scout-soroban/docs/detectors/token-interface-inference", + vulnerability_class: "Best Practices", } }