Skip to content

Commit

Permalink
chore: test parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
dndll committed Feb 9, 2024
1 parent c62c5bd commit 09d796c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bin/operator/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ fn main() {
use near_light_clientx::SyncCircuit;
SyncCircuit::<NETWORK>::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::<PROOF_AMT, PROOF_BATCH_SIZE, NETWORK>::entrypoint();
Expand Down

0 comments on commit 09d796c

Please sign in to comment.