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 aa5c3c2 commit 91e0679Copy full SHA for 91e0679
crates/batcher/src/lib.rs
@@ -1491,6 +1491,13 @@ impl Batcher {
1491
}
1492
1493
async fn is_verifier_disabled(&self, verifier: ProvingSystemId) -> bool {
1494
+ // Check if the verifier is disabled in the configuration first
1495
+ if self
1496
+ .config_disabled_verifiers
1497
+ .contains(&verifier.to_string())
1498
+ {
1499
+ return true;
1500
+ }
1501
let disabled_verifiers = self.disabled_verifiers.lock().await;
1502
zk_utils::is_verifier_disabled(*disabled_verifiers, verifier)
1503
0 commit comments