From 09d796cca40fe3743689f9ed2c0dc8588d3ac664 Mon Sep 17 00:00:00 2001 From: dndll Date: Fri, 9 Feb 2024 11:49:40 +0000 Subject: [PATCH] chore: test parameters --- bin/operator/src/main.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/operator/src/main.rs b/bin/operator/src/main.rs index 1caa739..8f73b8b 100644 --- a/bin/operator/src/main.rs +++ b/bin/operator/src/main.rs @@ -17,11 +17,11 @@ fn main() { use near_light_clientx::SyncCircuit; SyncCircuit::::entrypoint(); } else if #[cfg(feature = "verify")] { - const PROOF_AMT: usize = 64; - const PROOF_BATCH_SIZE: usize = 4; + const PROOF_AMT: usize = 2; + const PROOF_BATCH_SIZE: usize = 1; assert!(PROOF_AMT % PROOF_BATCH_SIZE == 0); - assert!(PROOF_AMT / PROOF_BATCH_SIZE.is_power_of_two()); + assert!((PROOF_AMT / PROOF_BATCH_SIZE).is_power_of_two()); use near_light_clientx::VerifyCircuit; VerifyCircuit::::entrypoint();