Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion yarn-project/aztec-node/src/aztec-node/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@ export type AztecNodeConfig = ArchiverConfig &
};

export const aztecNodeConfigMappings: ConfigMappingsType<AztecNodeConfig> = {
...dataConfigMappings,
...archiverConfigMappings,
...sequencerClientConfigMappings,
...validatorClientConfigMappings,
...proverClientConfigMappings,
...worldStateConfigMappings,
...p2pConfigMappings,
...dataConfigMappings,
disableValidator: {
env: 'VALIDATOR_DISABLED',
description: 'Whether the validator is disabled for this node.',
Expand Down
2 changes: 1 addition & 1 deletion yarn-project/prover-client/src/proving_broker/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ export const proverBrokerConfigMappings: ConfigMappingsType<ProverBrokerConfig>
parseEnv: (val: string | undefined) => (val ? +val : undefined),
description: "The size of the prover broker's database. Will override the dataStoreMapSizeKB if set.",
},
...l1ReaderConfigMappings,
...dataConfigMappings,
...l1ReaderConfigMappings,
};

export const defaultProverBrokerConfig: ProverBrokerConfig = getDefaultConfig(proverBrokerConfigMappings);
Expand Down