Skip to content

Commit

Permalink
dbg
Browse files Browse the repository at this point in the history
  • Loading branch information
anstylian committed Jan 19, 2025
1 parent 07be85a commit 28c795a
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions ledger/block/src/transaction/deployment/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,9 @@ impl<N: Network> Deployment<N> {
.checked_add(vk.num_variables())
.ok_or_else(|| anyhow!("Overflow when counting variables for '{}'", self.program_id()))?;
}

println!("ANGELOS num_combined_variables: {}", num_combined_variables);

// Return the number of combined variables.
Ok(num_combined_variables)
}
Expand All @@ -155,6 +158,9 @@ impl<N: Network> Deployment<N> {
.checked_add(vk.circuit_info.num_constraints as u64)
.ok_or_else(|| anyhow!("Overflow when counting constraints for '{}'", self.program_id()))?;
}

println!("ANGELOS num_combined_constraints: {}", num_combined_constraints);

// Return the number of combined constraints.
Ok(num_combined_constraints)
}
Expand Down

0 comments on commit 28c795a

Please sign in to comment.