Skip to content

Commit

Permalink
fix: aztec start --prover (#7617)
Browse files Browse the repository at this point in the history
Was failing with `No module specified to start`.
  • Loading branch information
spalladino authored Jul 25, 2024
1 parent eda498a commit ac206a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yarn-project/aztec/src/cli/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ export function injectAztecCommands(program: Command, userLog: LogFn, debugLogge
} else if (options.p2pBootstrap) {
const { startP2PBootstrap } = await import('./cmds/start_p2p_bootstrap.js');
await startP2PBootstrap(options, userLog, debugLogger);
} else if (options.proverAgent) {
} else if (options.prover) {
const { startProverAgent } = await import('./cmds/start_prover_agent.js');
services = await startProverAgent(options, signalHandlers, userLog);
} else if (options.txe) {
Expand Down

0 comments on commit ac206a6

Please sign in to comment.