From f094d2a2e495323e95662fd5b4bf4afdae1e2019 Mon Sep 17 00:00:00 2001 From: sirasistant Date: Thu, 14 Dec 2023 08:48:27 +0000 Subject: [PATCH] fix: broken imports --- 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 27a4845d6649..a9de5de99d65 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 badfa9c0f059..007ce181db5e 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 07b38d9b9881..268c6a8f8cea 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 7b193fdfb678..55ac93c33765 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" }