diff --git a/packages/safe-chain/bin/safe-chain.js b/packages/safe-chain/bin/safe-chain.js index 90d95cf..3f32bff 100755 --- a/packages/safe-chain/bin/safe-chain.js +++ b/packages/safe-chain/bin/safe-chain.js @@ -12,7 +12,6 @@ import { main } from "../src/main.js"; import path from "path"; import { fileURLToPath } from "url"; import fs from "fs"; -import { getCombinedCaBundlePath } from "../src/registryProxy/certBundle.js"; /** @type {string} */ let dirname; @@ -57,12 +56,6 @@ if (pkgManagerCommands.includes(command)) { process.exit(0); } else if (command === "setup") { setup(); -} else if (command === "certificate") { - (async function () { - const path = getCombinedCaBundlePath(); - const data = await fs.promises.readFile(path); - ui.writeInformation(data.toString("utf8")); - })(); } else if (command === "teardown") { teardown(); } else if (command === "setup-ci") {