Skip to content

Commit

Permalink
fix: remove include-keys option (#3692)
Browse files Browse the repository at this point in the history
# Description

## Problem\*

Resolves #3488 

## Summary\*

Keys have been removed from the artefacts, so we need to remove the
option to add them as well.

## Additional Context



## Documentation\*

Check one:
- [ ] No documentation needed.
- [X] Documentation included in this PR.
- [ ] **[Exceptional Case]** Documentation to be submitted in a separate
PR.

# PR Checklist\*

- [X] I have tested the changes locally.
- [X] I have formatted the changes with [Prettier](https://prettier.io/)
and/or `cargo fmt` on default settings.
  • Loading branch information
guipublic committed Dec 5, 2023
1 parent 02167cc commit 95d7ce2
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
1 change: 0 additions & 1 deletion docs/docs/nargo/01_commands.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 <PACKAGE>` | The name of the package to compile |
| `--workspace` | Compile all packages in the workspace |
| `--print-acir` | Display the ACIR for compiled circuit |
Expand Down
4 changes: 0 additions & 4 deletions tooling/nargo_cli/src/cli/compile_cmd.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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<CrateName>,
Expand Down

0 comments on commit 95d7ce2

Please sign in to comment.