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 2a5e61c commit a476dd0Copy full SHA for a476dd0
batcher/aligned-batcher/src/zk_utils/mod.rs
@@ -111,6 +111,9 @@ pub(crate) async fn filter_disabled_verifiers(
111
}
112
})
113
.collect();
114
+
115
+ // Send invalid proof messages to the clients whose proofs were removed.
116
+ // This is outside the loop because we needed to use await to send the message and we can't do that inside the filter_map.
117
for entry in removed_entries {
118
let ws_sink = entry.messaging_sink.as_ref();
119
if let Some(ws_sink) = ws_sink {
0 commit comments