From e43534aafefb4811bdf1f7fe1fa1493ab5c9152d Mon Sep 17 00:00:00 2001 From: Daniel Kales <11509575+dkales@users.noreply.github.com> Date: Thu, 3 Oct 2024 12:32:15 +0200 Subject: [PATCH] fix: clippy --- co-noir/ultrahonk/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/co-noir/ultrahonk/src/lib.rs b/co-noir/ultrahonk/src/lib.rs index e19ff033..686507ad 100644 --- a/co-noir/ultrahonk/src/lib.rs +++ b/co-noir/ultrahonk/src/lib.rs @@ -26,7 +26,7 @@ use types::ProverCrs; pub const NUM_ALPHAS: usize = decider::relations::NUM_SUBRELATIONS - 1; /// The log of the max circuit size assumed in order to achieve constant sized Honk proofs -/// TODO(https://github.com/AztecProtocol/barretenberg/issues/1046): Remove the need for const sized proofs +/// TODO(): Remove the need for const sized proofs pub const CONST_PROOF_SIZE_LOG_N: usize = 28; pub const N_MAX: usize = 1 << 25;