From f912ce355282250cf75350e661600c20782c60c4 Mon Sep 17 00:00:00 2001 From: Paolo Tagliaferri Date: Sun, 12 Jan 2025 23:54:27 +0100 Subject: [PATCH] Make `standard_recursion_config()` public This function was made private in 35cfdaa but it's required to be public as the other config functions in `CircuitConfig`. --- plonky2/src/plonk/circuit_data.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plonky2/src/plonk/circuit_data.rs b/plonky2/src/plonk/circuit_data.rs index 36cc53fa..fba828de 100644 --- a/plonky2/src/plonk/circuit_data.rs +++ b/plonky2/src/plonk/circuit_data.rs @@ -122,7 +122,7 @@ impl CircuitConfig { } } - fn standard_recursion_config() -> Self { + pub fn standard_recursion_config() -> Self { Self { num_wires: 0, num_routed_wires: 80,