@@ -51,7 +51,7 @@ def getmnlistdiff(self, baseBlockHash, blockHash):
5151
5252class LLMQQuorumRotationTest (DashTestFramework ):
5353 def set_test_params (self ):
54- self .set_dash_test_params (9 , 8 )
54+ self .set_dash_test_params (9 , 8 , extra_args = [[ "-vbparams=testdummy:999999999999:999999999999" ]] * 9 )
5555 self .set_dash_llmq_test_params (4 , 4 )
5656 self .delay_v20_and_mn_rr (height = 900 )
5757
@@ -161,13 +161,12 @@ def run_test(self):
161161 self .log .info ("Quorum #0_1 members: " + str (quorum_members_0_1 ))
162162
163163 q_100_0 = QuorumId (100 , int (quorum_info_0_0 ["quorumHash" ], 16 ))
164- q_102_0 = QuorumId (102 , int (quorum_info_0_0 ["quorumHash" ], 16 ))
165164 q_103_0_0 = QuorumId (103 , int (quorum_info_0_0 ["quorumHash" ], 16 ))
166165 q_103_0_1 = QuorumId (103 , int (quorum_info_0_1 ["quorumHash" ], 16 ))
167166
168167 b_1 = self .nodes [0 ].getbestblockhash ()
169168 expectedDeleted = [h_100_0 ]
170- expectedNew = [q_100_0 , q_102_0 , q_103_0_0 , q_103_0_1 ]
169+ expectedNew = [q_100_0 , q_103_0_0 , q_103_0_1 ]
171170 quorumList = self .test_getmnlistdiff_quorums (b_0 , b_1 , quorumList , expectedDeleted , expectedNew )
172171
173172 self .log .info ("Wait for chainlock" )
@@ -183,13 +182,12 @@ def run_test(self):
183182 self .log .info ("Quorum #1_1 members: " + str (quorum_members_1_1 ))
184183
185184 q_100_1 = QuorumId (100 , int (quorum_info_1_0 ["quorumHash" ], 16 ))
186- q_102_1 = QuorumId (102 , int (quorum_info_1_0 ["quorumHash" ], 16 ))
187185 q_103_1_0 = QuorumId (103 , int (quorum_info_1_0 ["quorumHash" ], 16 ))
188186 q_103_1_1 = QuorumId (103 , int (quorum_info_1_1 ["quorumHash" ], 16 ))
189187
190188 b_2 = self .nodes [0 ].getbestblockhash ()
191189 expectedDeleted = [h_100_1 , q_103_0_0 , q_103_0_1 ]
192- expectedNew = [q_100_1 , q_102_1 , q_103_1_0 , q_103_1_1 ]
190+ expectedNew = [q_100_1 , q_103_1_0 , q_103_1_1 ]
193191 quorumList = self .test_getmnlistdiff_quorums (b_1 , b_2 , quorumList , expectedDeleted , expectedNew )
194192
195193 mninfos_online = self .mninfo .copy ()
@@ -374,7 +372,6 @@ def compute_mn_score(self, mn, modifier):
374372 def get_llmq_size (self , llmq_type ):
375373 return {
376374 100 : 4 , # In this test size for llmqType 100 is overwritten to 4
377- 102 : 3 ,
378375 103 : 4 ,
379376 106 : 3
380377 }.get (llmq_type , - 1 )
0 commit comments