Skip to content

Commit 7c8814e

Browse files
authored
fix: broken aztec-nr imports (AztecProtocol#3693)
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).
1 parent a130c0c commit 7c8814e

File tree

4 files changed

+2
-5
lines changed

4 files changed

+2
-5
lines changed

yarn-project/aztec-nr/address-note/Nargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ type = "lib"
66

77
[dependencies]
88
aztec = { path = "../aztec" }
9-
protocol_types = { path = "../../../../noir-protocol-circuits/src/crates/types" }
9+
protocol_types = { path = "../../noir-protocol-circuits/src/crates/types" }

yarn-project/aztec-nr/aztec/src/lib.nr

-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@ mod log;
77
mod messaging;
88
mod note;
99
mod oracle;
10-
mod private_call_stack_item;
11-
mod public_call_stack_item;
1210
mod selector;
1311
mod state_vars;
1412
mod types;
-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
mod address;
21
mod point;
32
mod vec; // This can/should be moved out into an official noir library
43
mod type_serialization;

yarn-project/aztec-nr/easy-private-state/Nargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ type = "lib"
77
[dependencies]
88
aztec = { path = "../aztec" }
99
value_note = { path = "../value-note" }
10-
protocol_types = { path = "../../../../noir-protocol-circuits/src/crates/types" }
10+
protocol_types = { path = "../../noir-protocol-circuits/src/crates/types" }

0 commit comments

Comments
 (0)