diff --git a/docs/docs/nargo/01_commands.md b/docs/docs/nargo/01_commands.md index 65e2bdb44e3..7256dbc5346 100644 --- a/docs/docs/nargo/01_commands.md +++ b/docs/docs/nargo/01_commands.md @@ -100,7 +100,6 @@ You can also use "build" as an alias for compile (e.g. `nargo build`). | Option | Description | | --------------------- | ------------------------------------------------------------ | -| `--include-keys` | Include Proving and Verification keys in the build artifacts | | `--package ` | The name of the package to compile | | `--workspace` | Compile all packages in the workspace | | `--print-acir` | Display the ACIR for compiled circuit | diff --git a/tooling/nargo_cli/src/cli/compile_cmd.rs b/tooling/nargo_cli/src/cli/compile_cmd.rs index 69533292bbd..02ba0d13e87 100644 --- a/tooling/nargo_cli/src/cli/compile_cmd.rs +++ b/tooling/nargo_cli/src/cli/compile_cmd.rs @@ -37,10 +37,6 @@ const BACKEND_IDENTIFIER: &str = "acvm-backend-barretenberg"; /// Compile the program and its secret execution trace into ACIR format #[derive(Debug, Clone, Args)] pub(crate) struct CompileCommand { - /// Include Proving and Verification keys in the build artifacts. - #[arg(long)] - include_keys: bool, - /// The name of the package to compile #[clap(long, conflicts_with = "workspace")] package: Option,