From 8e912b17faebe067467fa3387aaf30af7d58160c Mon Sep 17 00:00:00 2001 From: Denis Fadeev Date: Mon, 12 Aug 2024 14:34:23 +0300 Subject: [PATCH] refactor: remove startLocalnet() call from index.ts --- src/index.ts | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/index.ts b/src/index.ts index 4416f2f..34c7977 100755 --- a/src/index.ts +++ b/src/index.ts @@ -444,12 +444,3 @@ export const startLocalnet = async () => { process.stdin.resume(); }; - -startLocalnet() - .then(() => { - console.log("Setup complete, monitoring events. Press CTRL+C to exit."); - }) - .catch((error) => { - console.error("Failed to deploy contracts or set up listeners:", error); - process.exit(1); - });