From 4740e28fa6430cd451441678779ed0f3763c3ede Mon Sep 17 00:00:00 2001 From: just-a-node Date: Mon, 7 Oct 2024 17:36:07 -0600 Subject: [PATCH] feat: increase maxSafeRoots max --- packages/agents/lighthouse/src/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/agents/lighthouse/src/config.ts b/packages/agents/lighthouse/src/config.ts index eef8e4f21a..b91ed8341b 100644 --- a/packages/agents/lighthouse/src/config.ts +++ b/packages/agents/lighthouse/src/config.ts @@ -124,7 +124,7 @@ export const NxtpLighthouseConfigSchema = Type.Object({ messageQueue: TMQConfig, server: TServerConfig, snapshotDuration: Type.Integer({ minimum: 1, maximum: 10000 }), - maxSafeRoots: Type.Integer({ minimum: 0, maximum: 10 }), + maxSafeRoots: Type.Integer({ minimum: 0, maximum: 13 }), }); export type NxtpLighthouseConfig = Static;