File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
batcher/aligned-batcher/src Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -54,6 +54,7 @@ pub mod s3;
5454pub mod sp1;
5555pub mod types;
5656mod zk_utils;
57+ mod testonly;
5758
5859pub struct Batcher {
5960 s3_client : S3Client ,
@@ -1026,11 +1027,11 @@ impl Batcher {
10261027 let mut disabled_verifiers_lock = self . disabled_verifiers . lock ( ) . await ;
10271028 if new_disable_verifiers != * disabled_verifiers_lock {
10281029 let mut batch_state = self . batch_state . lock ( ) . await ;
1029- * disabled_verifiers = new_disable_verifiers;
1030+ * disabled_verifiers_lock = new_disable_verifiers;
10301031 warn ! ( "Disabled verifiers updated, filtering queue" ) ;
10311032 let filered_batch_queue = zk_utils:: filter_disabled_verifiers (
10321033 batch_state. batch_queue . clone ( ) ,
1033- disabled_verifiers ,
1034+ disabled_verifiers_lock ,
10341035 )
10351036 . await ;
10361037 batch_state. batch_queue = filered_batch_queue;
You can’t perform that action at this time.
0 commit comments