From 83390900e038b59c519866f97a3c77da0666bd80 Mon Sep 17 00:00:00 2001 From: Mitch Date: Fri, 3 Jan 2025 13:28:49 -0500 Subject: [PATCH] fix: update schema naming --- yarn-project/circuit-types/src/interfaces/configs.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/yarn-project/circuit-types/src/interfaces/configs.ts b/yarn-project/circuit-types/src/interfaces/configs.ts index baafd3642945..8d56779c6f2d 100644 --- a/yarn-project/circuit-types/src/interfaces/configs.ts +++ b/yarn-project/circuit-types/src/interfaces/configs.ts @@ -60,6 +60,7 @@ export const SequencerConfigSchema = z.object({ allowedInSetup: z.array(AllowedElementSchema).optional(), maxBlockSizeInBytes: z.number().optional(), enforceFees: z.boolean().optional(), - gerousiaPayload: schemas.EthAddress.optional(), + governanceProposerPayload: schemas.EthAddress.optional(), maxL1TxInclusionTimeIntoSlot: z.number().optional(), + enforceTimeTable: z.boolean().optional(), }) satisfies ZodFor;