From fb729e6a1dcdedf9159bef3d6ce20f53ac1bbf42 Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Sat, 18 Feb 2023 09:55:23 -0500 Subject: [PATCH] *Don't await on bootup --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index c1c4715..68a705b 100644 --- a/src/index.ts +++ b/src/index.ts @@ -71,7 +71,7 @@ const plugin: Plugin = { name: "handshake", async plugin(_api: PluginAPI): Promise { api = _api; - await boot(api); + boot(api); const proxy = new Proxy({ swarm: api.swarm, protocol: PROTOCOL,