File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
testnet/stacks-node/src/tests/signer Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -6102,7 +6102,7 @@ fn miner_recovers_when_broadcast_block_delay_across_tenures_occurs() {
6102
6102
}
6103
6103
} )
6104
6104
. collect :: < Vec < _ > > ( ) ;
6105
- Ok ( signatures. len ( ) == num_signers)
6105
+ Ok ( signatures. len ( ) >= num_signers * 7 / 10 )
6106
6106
} )
6107
6107
. expect ( "Test timed out while waiting for signers signatures for first block proposal" ) ;
6108
6108
let block = block. unwrap ( ) ;
@@ -6192,7 +6192,7 @@ fn miner_recovers_when_broadcast_block_delay_across_tenures_occurs() {
6192
6192
}
6193
6193
} )
6194
6194
. collect :: < Vec < _ > > ( ) ;
6195
- Ok ( block_rejections. len ( ) == num_signers)
6195
+ Ok ( block_rejections. len ( ) >= num_signers * 7 / 10 )
6196
6196
} )
6197
6197
. expect ( "FAIL: Timed out waiting for block proposal rejections" ) ;
6198
6198
You can’t perform that action at this time.
0 commit comments