From 7c8814ed5640e0050f74097f3c578312c8eb67f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81lvaro=20Rodr=C3=ADguez?= Date: Thu, 14 Dec 2023 09:30:02 +0000 Subject: [PATCH] fix: broken aztec-nr imports (#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). --- yarn-project/aztec-nr/address-note/Nargo.toml | 2 +- yarn-project/aztec-nr/aztec/src/lib.nr | 2 -- yarn-project/aztec-nr/aztec/src/types.nr | 1 - yarn-project/aztec-nr/easy-private-state/Nargo.toml | 2 +- 4 files changed, 2 insertions(+), 5 deletions(-) diff --git a/yarn-project/aztec-nr/address-note/Nargo.toml b/yarn-project/aztec-nr/address-note/Nargo.toml index 27a4845d664..a9de5de99d6 100644 --- a/yarn-project/aztec-nr/address-note/Nargo.toml +++ b/yarn-project/aztec-nr/address-note/Nargo.toml @@ -6,4 +6,4 @@ type = "lib" [dependencies] aztec = { path = "../aztec" } -protocol_types = { path = "../../../../noir-protocol-circuits/src/crates/types" } \ No newline at end of file +protocol_types = { path = "../../noir-protocol-circuits/src/crates/types" } diff --git a/yarn-project/aztec-nr/aztec/src/lib.nr b/yarn-project/aztec-nr/aztec/src/lib.nr index badfa9c0f05..007ce181db5 100644 --- a/yarn-project/aztec-nr/aztec/src/lib.nr +++ b/yarn-project/aztec-nr/aztec/src/lib.nr @@ -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; diff --git a/yarn-project/aztec-nr/aztec/src/types.nr b/yarn-project/aztec-nr/aztec/src/types.nr index 07b38d9b988..268c6a8f8ce 100644 --- a/yarn-project/aztec-nr/aztec/src/types.nr +++ b/yarn-project/aztec-nr/aztec/src/types.nr @@ -1,4 +1,3 @@ -mod address; mod point; mod vec; // This can/should be moved out into an official noir library mod type_serialization; diff --git a/yarn-project/aztec-nr/easy-private-state/Nargo.toml b/yarn-project/aztec-nr/easy-private-state/Nargo.toml index 7b193fdfb67..55ac93c3376 100644 --- a/yarn-project/aztec-nr/easy-private-state/Nargo.toml +++ b/yarn-project/aztec-nr/easy-private-state/Nargo.toml @@ -7,4 +7,4 @@ type = "lib" [dependencies] aztec = { path = "../aztec" } value_note = { path = "../value-note" } -protocol_types = { path = "../../../../noir-protocol-circuits/src/crates/types" } \ No newline at end of file +protocol_types = { path = "../../noir-protocol-circuits/src/crates/types" }