From 0054ce58471746ae8629106a69934f3d8bf4683b Mon Sep 17 00:00:00 2001 From: Sergio Chouhy Date: Sat, 22 Nov 2025 18:39:02 -0300 Subject: [PATCH] nit --- nssa/src/privacy_preserving_transaction/circuit.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nssa/src/privacy_preserving_transaction/circuit.rs b/nssa/src/privacy_preserving_transaction/circuit.rs index 37f07dd..4640d58 100644 --- a/nssa/src/privacy_preserving_transaction/circuit.rs +++ b/nssa/src/privacy_preserving_transaction/circuit.rs @@ -18,7 +18,7 @@ pub struct Proof(pub(crate) Vec); pub struct ProgramWithDependencies { pub program: Program, - // TODO: this will have a copy of each dependency bytecode in each program + // TODO: avoid having a copy of the bytecode of each dependency. pub dependencies: HashMap, }