From d96cf7d14de3b870c66619cbff727dcd898a3049 Mon Sep 17 00:00:00 2001 From: Reinier Criel Date: Mon, 8 Dec 2025 15:36:37 -0800 Subject: [PATCH] Fix linting issues --- packages/safe-chain/src/registryProxy/certBundle.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/packages/safe-chain/src/registryProxy/certBundle.js b/packages/safe-chain/src/registryProxy/certBundle.js index 78e0f70..42549b9 100644 --- a/packages/safe-chain/src/registryProxy/certBundle.js +++ b/packages/safe-chain/src/registryProxy/certBundle.js @@ -43,9 +43,6 @@ function isParsable(pem) { } } -/** @type {string | null} */ -let cachedPath = null; - /** * Build a combined CA bundle. * Automatically includes: @@ -104,7 +101,6 @@ export function getCombinedCaBundlePath() { const combined = parts.filter(Boolean).join("\n"); const target = path.join(os.tmpdir(), `safe-chain-ca-bundle-${Date.now()}.pem`); fs.writeFileSync(target, combined, { encoding: "utf8" }); - cachedPath = target; return target; }