Skip to content

Commit

Permalink
fix: broken aztec-nr imports (AztecProtocol#3693)
Browse files Browse the repository at this point in the history
Please provide a paragraph or two giving a summary of the change,
including relevant motivation and context.

# Checklist:
Remove the checklist to signal you've completed it. Enable auto-merge if
the PR is ready to merge.
- [ ] If the pull request requires a cryptography review (e.g.
cryptographic algorithm implementations) I have added the 'crypto' tag.
- [ ] I have reviewed my diff in github, line by line and removed
unexpected formatting changes, testing logs, or commented-out code.
- [ ] Every change is related to the PR description.
- [ ] I have
[linked](https://docs.github.com/en/issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue)
this pull request to relevant issues (if any exist).
  • Loading branch information
sirasistant committed Dec 14, 2023
1 parent a130c0c commit 7c8814e
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion yarn-project/aztec-nr/address-note/Nargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ type = "lib"

[dependencies]
aztec = { path = "../aztec" }
protocol_types = { path = "../../../../noir-protocol-circuits/src/crates/types" }
protocol_types = { path = "../../noir-protocol-circuits/src/crates/types" }
2 changes: 0 additions & 2 deletions yarn-project/aztec-nr/aztec/src/lib.nr
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@ mod log;
mod messaging;
mod note;
mod oracle;
mod private_call_stack_item;
mod public_call_stack_item;
mod selector;
mod state_vars;
mod types;
Expand Down
1 change: 0 additions & 1 deletion yarn-project/aztec-nr/aztec/src/types.nr
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
mod address;
mod point;
mod vec; // This can/should be moved out into an official noir library
mod type_serialization;
2 changes: 1 addition & 1 deletion yarn-project/aztec-nr/easy-private-state/Nargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ type = "lib"
[dependencies]
aztec = { path = "../aztec" }
value_note = { path = "../value-note" }
protocol_types = { path = "../../../../noir-protocol-circuits/src/crates/types" }
protocol_types = { path = "../../noir-protocol-circuits/src/crates/types" }

0 comments on commit 7c8814e

Please sign in to comment.