This commit is contained in:
Sergio Chouhy 2025-11-22 18:39:02 -03:00
parent d73fcbd2b3
commit 0054ce5847

View File

@ -18,7 +18,7 @@ pub struct Proof(pub(crate) Vec<u8>);
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<ProgramId, Program>,
}