From 3add7aa25e7fe931b8e26e1cc3c30b45d0a69486 Mon Sep 17 00:00:00 2001 From: Sander Declerck Date: Fri, 28 Nov 2025 16:26:31 +0100 Subject: [PATCH] Remove debugging from certUtils.js --- packages/safe-chain/src/registryProxy/certUtils.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/packages/safe-chain/src/registryProxy/certUtils.js b/packages/safe-chain/src/registryProxy/certUtils.js index 02a0f53..e148711 100644 --- a/packages/safe-chain/src/registryProxy/certUtils.js +++ b/packages/safe-chain/src/registryProxy/certUtils.js @@ -97,11 +97,8 @@ function loadCa() { } function generateCa() { - ui.writeInformation("1"); const keys = forge.pki.rsa.generateKeyPair(2048); - ui.writeInformation("2"); const cert = forge.pki.createCertificate(); - ui.writeInformation("3"); cert.publicKey = keys.publicKey; cert.serialNumber = "01"; cert.validity.notBefore = new Date(); @@ -124,7 +121,6 @@ function generateCa() { }, ]); cert.sign(keys.privateKey, forge.md.sha256.create()); - ui.writeInformation("4"); return { privateKey: keys.privateKey,