zebra/zebra-consensus/src/primitives.rs

9 lines
321 B
Rust

//! Asynchronous verification of cryptographic primitives.
pub mod redjubjub;
/// The maximum batch size for any of the batch verifiers.
const MAX_BATCH_SIZE: usize = 64;
/// The maximum latency bound for any of the batch verifiers.
const MAX_BATCH_LATENCY: std::time::Duration = std::time::Duration::from_millis(100);