diff --git a/detectors/dos-unexpected-revert-with-vector/src/lib.rs b/detectors/dos-unexpected-revert-with-vector/src/lib.rs index e3505dce..7587e313 100644 --- a/detectors/dos-unexpected-revert-with-vector/src/lib.rs +++ b/detectors/dos-unexpected-revert-with-vector/src/lib.rs @@ -61,7 +61,6 @@ impl<'tcx> LateLintPass<'tcx> for UnexpectedRevertWarn { let defid = self.cx.typeck_results().type_dependent_def_id(expr.hir_id); let ty = Ty::new_foreign(self.cx.tcx, defid.unwrap()); if path.ident.name.to_string() == "require_auth" { - //println!("este es un require auth"); self.require_auth = true; } if ty.to_string().contains("soroban_sdk::Vec") diff --git a/test-cases/unrestricted-transfer-from/Cargo.toml b/test-cases/unrestricted-transfer-from/Cargo.toml index 19373db7..4e7e2772 100644 --- a/test-cases/unrestricted-transfer-from/Cargo.toml +++ b/test-cases/unrestricted-transfer-from/Cargo.toml @@ -20,7 +20,3 @@ strip = "symbols" debug-assertions = true inherits = "release" -[workspace.metadata.dylint] -libraries = [ - { path="/home/sofia/Documentos/cf/pr/scout-soroban/detectors/unrestricted-transfer-from" }, -]