From 8be32cfd793bdcca25f2d8d63357feb1ec747a22 Mon Sep 17 00:00:00 2001 From: Cypher Pepe <125112044+cypherpepe@users.noreply.github.com> Date: Sun, 2 Nov 2025 15:50:17 +0300 Subject: [PATCH] fix: broken link in warning message for high cycle count --- crates/prover/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/prover/src/lib.rs b/crates/prover/src/lib.rs index ece896a71..470dd63bc 100644 --- a/crates/prover/src/lib.rs +++ b/crates/prover/src/lib.rs @@ -1397,7 +1397,7 @@ impl SP1Prover { fn check_for_high_cycles(cycles: u64) { if cycles > 100_000_000 { tracing::warn!( - "High cycle count detected ({}M cycles). For better performance, consider using the Succinct Prover Network: https://docs.succinct.xyz/docs/sp1/generating-proofs/prover-network", + "High cycle count detected ({}M cycles). For better performance, consider using the Succinct Prover Network: https://docs.succinct.xyz/docs/sp1/prover-network/quickstart", cycles / 1_000_000 ); }