From eba1dacb2aa18d263a9bfcb6e91cd5b588b9b6ac Mon Sep 17 00:00:00 2001 From: Jeff Smale <6363749+jeffsmale90@users.noreply.github.com> Date: Tue, 6 Dec 2022 11:29:41 +1300 Subject: [PATCH] Don't start the chain server when loading the configuration screen --- src/main/index.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/main/index.js b/src/main/index.js index 1e9e281d9..ded3e0436 100644 --- a/src/main/index.js +++ b/src/main/index.js @@ -583,10 +583,6 @@ app.on("ready", async () => { workspace.contractCache.getAll() ); - if (!(await integrations.startServer())) { - return; - } - if (workspace) { const globalSettings = global.getAll(); const workspaceSettings = workspace.settings.getAll();