From b0a2fac43d06541c4d65bcfc4f81db3a5b1e0108 Mon Sep 17 00:00:00 2001 From: Philippe Schommers Date: Tue, 4 Apr 2023 15:12:42 +0200 Subject: [PATCH] fix: comment out fastify plugins autoload --- packages/relayer/src/app.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/relayer/src/app.ts b/packages/relayer/src/app.ts index c00e92e..455ce2e 100644 --- a/packages/relayer/src/app.ts +++ b/packages/relayer/src/app.ts @@ -25,17 +25,19 @@ const app: FastifyPluginAsync = async ( const provider = getDefaultProvider(RPC_URL); syncGroup(provider, GLOBAL_ANONYMOUS_FEED_ADDRESS); - epochSealer.start() + epochSealer.start(); // Do not touch the following lines // This loads all plugins defined in plugins // those should be support plugins that are reused // through your application + /* fastify.register(AutoLoad, { dir: join(__dirname, "plugins"), options: opts, }); + */ // This loads all plugins defined in routes // define your routes in one of these