We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a476dd0 commit 270bfebCopy full SHA for 270bfeb
batcher/aligned-batcher/src/zk_utils/mod.rs
@@ -78,6 +78,8 @@ pub(crate) fn is_verifier_disabled(
78
disabled_verifiers & (U256::one() << verification_data.proving_system as u64) != U256::zero()
79
}
80
81
+/// Filters out proofs from the batch queue that are using disabled verifiers.
82
+/// This function will be used when there's a change in the disabled verifiers bitmap but the batcher already processed some proofs.
83
pub(crate) async fn filter_disabled_verifiers(
84
batch_queue: BatchQueue,
85
disabled_verifiers: MutexGuard<'_, U256>,
0 commit comments